summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox-flex-direction-column-percentage-ignored.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flexbox-flex-direction-column-percentage-ignored.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/flexbox-flex-direction-column-percentage-ignored.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flexbox-flex-direction-column-percentage-ignored.html b/testing/web-platform/tests/css/css-flexbox/flexbox-flex-direction-column-percentage-ignored.html
new file mode 100644
index 0000000000..037ef3e83f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/flexbox-flex-direction-column-percentage-ignored.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<title>CSS Flexbox: height of a child of a flexbox with flex-direction: column</title>
+<link rel="help" href="https://drafts.csswg.org/css-flexbox/#definite-sizes">
+<link rel="bookmark" href="https://crbug.com/404337">
+<link rel="match" href="reference/flexbox-flex-direction-column-percentage-ignored-ref.html">
+<meta name="assert" content="This test ensures that the percentage height of child of a flexbox with 'flex-direction: column' and no explicit height but with max-height set should be treated as 'auto'.">
+<link href="support/flexbox.css" rel="stylesheet">
+<style>
+.flexbox {
+ max-height: 10px;
+ overflow: hidden;
+}
+</style>
+
+<div class="flexbox column">
+ <div style="height: 1%">
+ The height here should be ignored.
+ </div>
+</div>