diff options
Diffstat (limited to 'Tests/LibWeb/Layout/input/block-and-inline/bfc-consider-all-currently-stacked-floats.html')
-rw-r--r-- | Tests/LibWeb/Layout/input/block-and-inline/bfc-consider-all-currently-stacked-floats.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Tests/LibWeb/Layout/input/block-and-inline/bfc-consider-all-currently-stacked-floats.html b/Tests/LibWeb/Layout/input/block-and-inline/bfc-consider-all-currently-stacked-floats.html new file mode 100644 index 0000000000..0fc9a04855 --- /dev/null +++ b/Tests/LibWeb/Layout/input/block-and-inline/bfc-consider-all-currently-stacked-floats.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html> + <head> + <style> + * { + font-family: 'SerenitySans'; + } + .big-float { + float: left; + width: 100px; + height: 100px; + background-color: pink; + } + .xxx, + .yyy { + float: left; + background-color: orange; + } + </style> + </head> + <div class="big-float"></div> + <div class="xxx">xxx</div> + bar + <div> + <div class="yyy">yyy</div> + baz + </div> +</html> |