summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/flexbox/single-line-row-flex-fragmentation-021.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-break/flexbox/single-line-row-flex-fragmentation-021.html')
-rw-r--r--testing/web-platform/tests/css/css-break/flexbox/single-line-row-flex-fragmentation-021.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/flexbox/single-line-row-flex-fragmentation-021.html b/testing/web-platform/tests/css/css-break/flexbox/single-line-row-flex-fragmentation-021.html
new file mode 100644
index 0000000000..d4e29dd815
--- /dev/null
+++ b/testing/web-platform/tests/css/css-break/flexbox/single-line-row-flex-fragmentation-021.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<title>
+ Single-line row flex fragmentation: If the fragmentainer is out of space
+ but the flexbox and flex row have zero block-size, not additional
+ fragmentainers should be created to hold this content.
+</title>
+<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
+<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
+<style>
+ #flex {
+ display: flex;
+ }
+</style>
+<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
+<div style="width: 100px; height: 100px; columns: 1; column-rule: 20px solid red; column-fill: auto;">
+ <div style="height: 100px; width: 100px; background: green;"></div>
+ <div id="flex">
+ <div></div>
+ </div>
+</div>