diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-multicol/overflow-unsplittable-002.html')
-rw-r--r-- | testing/web-platform/tests/css/css-multicol/overflow-unsplittable-002.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-multicol/overflow-unsplittable-002.html b/testing/web-platform/tests/css/css-multicol/overflow-unsplittable-002.html new file mode 100644 index 0000000000..d8fafafe2c --- /dev/null +++ b/testing/web-platform/tests/css/css-multicol/overflow-unsplittable-002.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<title> + Test that a scrollable container isn't split across multiple columns. +</title> +<link rel="help" href="https://www.w3.org/TR/css-break-3/#possible-breaks"> +<link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> +<p>Test passes if there is a filled green square.</p> +<div style="columns:2; column-gap:0; width:200px; height:50px;"> + <div style="overflow:auto; width:100px; background:green;"> + <div style="height:100px;"></div> + </div> +</div> |