summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/table/specified-block-size-007.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-break/table/specified-block-size-007.html')
-rw-r--r--testing/web-platform/tests/css/css-break/table/specified-block-size-007.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/table/specified-block-size-007.html b/testing/web-platform/tests/css/css-break/table/specified-block-size-007.html
new file mode 100644
index 0000000000..f342e2a8fa
--- /dev/null
+++ b/testing/web-platform/tests/css/css-break/table/specified-block-size-007.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/">
+<link rel="match" href="specified-block-size-007-ref.html">
+<p>There should be four columns. The first one should be yellow, the three
+ others should be cyan. No red should be seen.</p>
+<div style="columns:4; gap:10px; column-fill:auto; width:130px; height:100px;">
+ <div style="display:table; height:400px; width:100%; background:red;">
+ <div style="display:table-row; background:yellow;">
+ <div style="height:1px;"></div>
+ </div>
+ <div style="display:table-row; background:cyan;">
+ <div style="height:3px;"></div>
+ </div>
+ </div>
+</div>