summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/stretching-orthogonal-flows.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/stretching-orthogonal-flows.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/stretching-orthogonal-flows.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/stretching-orthogonal-flows.html b/testing/web-platform/tests/css/css-flexbox/stretching-orthogonal-flows.html
new file mode 100644
index 0000000000..acaa787faf
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/stretching-orthogonal-flows.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<title>CSS Flexbox: Stretch alignment for children with orthogonal flows</title>
+<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-property">
+<link rel="help" href="https://drafts.csswg.org/css-flexbox/#align-items-property">
+<link rel="match" href="reference/stretching-orthogonal-flows-ref.html">
+<link href="support/flexbox.css" rel="stylesheet">
+<meta name="assert" content="The test ensures that the stretch alignment of flex items work
+similarly with both parallel and orthogonal flows.">
+
+<p>You should see no red.</p>
+
+<div class="flexbox column align-items-stretch" style="background-color: red;">
+ <div style="background-color: green; height: 20px;"></div>
+ <div style="writing-mode: vertical-lr; background-color: green; height: 20px;"></div>
+</div>