summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/overflow-clip-006.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-break/overflow-clip-006.html')
-rw-r--r--testing/web-platform/tests/css/css-break/overflow-clip-006.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/overflow-clip-006.html b/testing/web-platform/tests/css/css-break/overflow-clip-006.html
new file mode 100644
index 0000000000..526577b7b9
--- /dev/null
+++ b/testing/web-platform/tests/css/css-break/overflow-clip-006.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
+<link rel="help" href="https://www.w3.org/TR/css-break-3/#fragmentation-model">
+<link rel="help" href="https://www.w3.org/TR/css-overflow-3/#overflow-properties">
+<meta name="assert" content="The spec says that when breakable content would overflow a fragmentainer in the block dimension, it breaks into the next container in its fragmentation context. If a container has clipped overflow, and the container ends before the fragmentation line, though, breakable content inside it can never overflow the fragmentainer, and as such, no additional fragmentainers should be generated.">
+<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
+<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
+<div style="columns:5; column-gap:20px; column-rule:20px solid green; column-fill:auto; width:180px; height:100px;">
+ <div style="overflow:clip;">
+ <div style="height:300px;">
+ <div style="height:300px; background:green;"></div>
+ <div style="height:200px; background:red;"></div>
+ <div style="break-before:column; height:10px; background:red;"></div>
+ </div>
+ </div>
+</div>