diff options
Diffstat (limited to 'test/layout/inline-float-breaks-line.html')
-rw-r--r-- | test/layout/inline-float-breaks-line.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/layout/inline-float-breaks-line.html b/test/layout/inline-float-breaks-line.html new file mode 100644 index 00000000..2bd74860 --- /dev/null +++ b/test/layout/inline-float-breaks-line.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<div style="display: flow-root"> +test1 +<div style="float: left; width: 100%"> +test2 +</div> +<div style="float: left"> +test3 +</div> +test4 +</div> +<div style="display: flow-root"> +test1 +<div style="float: left; width: 50%"> +test2 +</div> +<div style="float: left"> +test3 +</div> +test4 +</div> |