diff options
Diffstat (limited to 'layout/reftests/floats/bfc-displace-2b-ref.html')
-rw-r--r-- | layout/reftests/floats/bfc-displace-2b-ref.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/layout/reftests/floats/bfc-displace-2b-ref.html b/layout/reftests/floats/bfc-displace-2b-ref.html new file mode 100644 index 0000000000..bb6ede1cee --- /dev/null +++ b/layout/reftests/floats/bfc-displace-2b-ref.html @@ -0,0 +1,40 @@ +<!DOCTYPE HTML> +<title>Test of block formatting context displacement by floats</title> +<style> + +.contain { + border: medium solid; + width: 400px; + height: 400px; + background: yellow; +} + +.block { + height: 10px; + background: aqua; +} + +.float { + float: left; + clear: left; + height: 20px; + background: blue; +} + +.bfc { + float: left; + clear: left; + width: 250px; + height: 14px; /* one pixel too tall to fit next to first float */ + background: fuchsia; +} + +</style> + + +<div class="contain"> + <div class="block"></div> + <div class="float" style="width: 100px"></div> + <div class="float" style="width: 200px"></div> + <div class="bfc"></div> +</div> |