summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/reference/nested-orthogonal-flexbox-relayout-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/reference/nested-orthogonal-flexbox-relayout-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/reference/nested-orthogonal-flexbox-relayout-ref.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/reference/nested-orthogonal-flexbox-relayout-ref.html b/testing/web-platform/tests/css/css-flexbox/reference/nested-orthogonal-flexbox-relayout-ref.html
new file mode 100644
index 0000000000..124ecf843c
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/reference/nested-orthogonal-flexbox-relayout-ref.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<style>
+#column {
+ display: flex;
+ flex-direction: column;
+ border: 5px solid yellow;
+ width: 200px;
+}
+
+#row {
+ display: flex;
+ flex-direction: row;
+ border: 5px solid blue;
+}
+
+.item {
+ border: 5px solid green;
+}
+</style>
+<body>
+<div id="column">
+ <div id="row">
+ <div class="item">This text should not overflow its box</div>
+ </div>
+</div>