summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/percentage-heights-010.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/percentage-heights-010.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/percentage-heights-010.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/percentage-heights-010.html b/testing/web-platform/tests/css/css-flexbox/percentage-heights-010.html
new file mode 100644
index 0000000000..003cc2487a
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/percentage-heights-010.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<title>A height: 100% descendant should trigger a relayout when stretching.</title>
+<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#definite-sizes" />
+<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1043071" />
+<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="display: flex; width: 100px;">
+ <div style="display: flex; flex-direction: column; flex: 1; min-height: 100px;">
+ <div style="flex: 1; background: red;">
+ <div style="height: 100%; background-color: green;"></div>
+ </div>
+ </div>
+</div>