summaryrefslogtreecommitdiffstats
path: root/layout/reftests/flexbox/flexbox-min-bsize-keywords-horiz-1-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/flexbox/flexbox-min-bsize-keywords-horiz-1-ref.html')
-rw-r--r--layout/reftests/flexbox/flexbox-min-bsize-keywords-horiz-1-ref.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/layout/reftests/flexbox/flexbox-min-bsize-keywords-horiz-1-ref.html b/layout/reftests/flexbox/flexbox-min-bsize-keywords-horiz-1-ref.html
new file mode 100644
index 0000000000..eb79ba48c5
--- /dev/null
+++ b/layout/reftests/flexbox/flexbox-min-bsize-keywords-horiz-1-ref.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<html>
+<head>
+ <title>CSS Reference Case</title>
+ <meta charset="utf-8">
+ <style>
+ .container {
+ display: flex;
+ flex-direction: row;
+ }
+ .container > * {
+ writing-mode: vertical-lr;
+ border: 1px solid black;
+ }
+ .itemA {
+ background: purple;
+ }
+ .itemB {
+ background: teal;
+ }
+ .itemC {
+ background: blue;
+ }
+ .itemD {
+ background: yellow;
+ }
+ </style>
+</head>
+<body>
+ <div class="container">
+ <div class="itemA">itemA</div>
+ <div class="itemB">itemB</div>
+ <div class="itemC">itemC</div>
+ <div class="itemD">itemD</div>
+ </div>
+</body>
+</html>