blob: edfc353c6a2cc5c4a6f2cc1858eacc320f2507e4 [file] [log] [blame]
ojan@chromium.orgdc30af12011-09-20 22:46:19 +00001<!DOCTYPE html>
2<html>
3<style>
4body {
5 margin: 0;
6}
ojan@chromium.org92bf5d32011-09-21 17:00:43 +00007.flexbox {
ojan@chromium.orgdc30af12011-09-20 22:46:19 +00008 width: 600px;
hyatt@apple.com247170f2017-02-28 16:23:15 +00009 display: flex;
ojan@chromium.orgdc783b12011-09-27 21:45:54 +000010 background-color: grey;
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000011}
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000012.flexbox div {
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000013 height: 20px;
14 border: 0;
15}
16
17.rtl {
18 direction: rtl;
19}
20
hyatt@apple.com247170f2017-02-28 16:23:15 +000021.horizontal-tb {
22 writing-mode:horizontal-tb;
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000023}
24
hyatt@apple.com247170f2017-02-28 16:23:15 +000025
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000026.vertical-rl, .vertical-lr {
27 height: 600px;
28}
29
30:-webkit-any(.vertical-rl, .vertical-lr) div {
31 width: 20px;
32}
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000033.vertical-rl {
hyatt@apple.com247170f2017-02-28 16:23:15 +000034 writing-mode: vertical-rl;
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000035}
36
37.vertical-lr {
hyatt@apple.com247170f2017-02-28 16:23:15 +000038 writing-mode: vertical-lr;
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000039}
40
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000041.flexbox > :nth-child(1) {
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000042 background-color: blue;
43}
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000044.flexbox > :nth-child(2) {
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000045 background-color: green;
46}
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000047.flexbox > :nth-child(3) {
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000048 background-color: red;
49}
50</style>
hyatt@apple.com247170f2017-02-28 16:23:15 +000051<script src="../../resources/testharness.js"></script>
52<script src="../../resources/testharnessreport.js"></script>
53<script src="../../resources/check-layout-th.js"></script>
tony@chromium.orgb1541ca2012-07-13 19:58:47 +000054<body onload="checkLayout('.flexbox')">
hyatt@apple.com247170f2017-02-28 16:23:15 +000055<div id=log></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000056
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000057<div class="flexbox rtl">
hyatt@apple.com247170f2017-02-28 16:23:15 +000058 <div data-expected-width="75" data-offset-x="525" style="flex: 1 0 0; margin: 0 auto;"></div>
59 <div data-expected-width="350" data-offset-x="175" style="flex: 2 0 0; padding: 0 100px;"></div>
60 <div data-expected-width="75" data-offset-x="100" style="flex: 1 0 0; margin-left: 100px;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000061</div>
62
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000063<div class="flexbox rtl">
hyatt@apple.com247170f2017-02-28 16:23:15 +000064 <div data-expected-width="75" data-offset-x="525" style="flex: 1 0 0; margin: 0 auto;"></div>
65 <div data-expected-width="350" data-offset-x="175" style="flex: 2 0 0; padding: 0 100px;"></div>
66 <div data-expected-width="75" data-offset-x="0" style="flex: 1 0 0; -webkit-margin-start: 100px;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000067</div>
68
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000069<div class="flexbox rtl" style="-webkit-margin-start: 20px;-webkit-margin-end: 50px;">
hyatt@apple.com247170f2017-02-28 16:23:15 +000070 <div data-expected-width="75" data-offset-x="575" style="flex: 1 0 0; margin: 0 auto;"></div>
71 <div data-expected-width="350" data-offset-x="225" style="flex: 2 0 0; padding: 0 100px;"></div>
72 <div data-expected-width="75" data-offset-x="50" style="flex: 1 0 0; -webkit-margin-start: 100px;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000073</div>
74
75<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000076<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +000077 <div data-expected-height="150" data-offset-y="0" style="flex: 1 0 0;"></div>
78 <div data-expected-height="300" data-offset-y="150" style="flex: 2 0 0;"></div>
79 <div data-expected-height="150" data-offset-y="450" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000080</div>
81</div>
82
83<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +000084<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +000085 <div data-expected-height="150" data-offset-y="0" data-offset-x="50" style="flex: 1 0 0; margin: 0 100px 0 50px;"></div>
86 <div data-expected-height="300" data-offset-y="150" style="flex: 2 0 0;"></div>
87 <div data-expected-height="150" data-offset-y="450" style="flex: 1 0 0;"></div>
ojan@chromium.org82538602011-10-06 00:01:28 +000088</div>
89</div>
90
91<div style="position:relative">
92<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +000093 <div data-expected-height="150" data-offset-y="0" style="flex: 1 0 0;"></div>
94 <div data-expected-height="300" data-offset-y="150" class="horizontal-tb" style="flex: 2 0 0;"></div>
95 <div data-expected-height="150" data-offset-y="450" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +000096</div>
97</div>
98
99<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000100<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000101 <div data-expected-height="450" data-offset-y="0" style="flex: 1 0 0;-webkit-padding-start:200px;-webkit-padding-end:200px;-webkit-padding-before:100px;-webkit-padding-after:100px;"></div>
102 <div data-expected-height="100" data-offset-y="450" style="flex: 2 0 0;"></div>
103 <div data-expected-height="50" data-offset-y="550" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000104</div>
105</div>
106
107<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000108<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000109 <div data-expected-height="300" data-offset-y="0" class="horizontal-tb" style="flex: 1 0 0;-webkit-padding-start:200px;-webkit-padding-end:200px;-webkit-padding-before:100px;-webkit-padding-after:100px;"></div>
110 <div data-expected-height="200" data-offset-y="300" style="flex: 2 0 0;"></div>
111 <div data-expected-height="100" data-offset-y="500" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000112</div>
113</div>
114
115
116<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000117<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000118 <div data-expected-height="150" data-offset-y="0" style="flex: 1 0 0; margin: auto 0;"></div>
119 <div data-expected-height="300" data-offset-y="150" style="flex: 2 0 0;"></div>
120 <div data-expected-height="150" data-offset-y="450" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000121</div>
122</div>
123
124<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000125<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000126 <div data-expected-height="75" data-offset-y="0" style="flex: 1 0 0;margin: auto 0;"></div>
127 <div data-expected-height="450" data-offset-y="75" style="flex: 2 0 auto; height: auto;"><div data-offset-y="75" style="width:200px;height:300px;background-color:orange;"></div></div>
128 <div data-expected-height="75" data-offset-y="525" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000129</div>
130</div>
131
132<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000133<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000134 <div data-expected-height="75" data-offset-y="0" style="flex: 1 0 0;margin: auto 0;"></div>
135 <div data-expected-height="450" data-offset-y="75" class="horizontal-tb" style="flex: 2 0 auto; height: auto;"><div style="width:200px;height:300px;background-color:orange;"></div></div>
136 <div data-expected-height="75" data-offset-y="525" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000137</div>
138</div>
139
140<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000141<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000142 <div data-expected-height="150" data-offset-y="0" style="flex: 1 0 0;-webkit-margin-start:auto;-webkit-margin-end:auto;-webkit-margin-before:0;-webkit-margin-after:0;;"></div>
143 <div data-expected-height="300" data-offset-y="150" style="flex: 2 0 0;"></div>
144 <div data-expected-height="150" data-offset-y="450" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000145</div>
146</div>
147
148<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000149<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000150 <div data-expected-height="150" data-offset-y="0" class="horizontal-tb" style="flex: 1 0 0;-webkit-margin-start:auto;-webkit-margin-end:auto;-webkit-margin-before:0;-webkit-margin-after:0;;"></div>
151 <div data-expected-height="300" data-offset-y="150" style="flex: 2 0 0;"></div>
152 <div data-expected-height="150" data-offset-y="450" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000153</div>
154</div>
155
156<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000157<div class="flexbox vertical-lr rtl">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000158 <div data-expected-height="75" data-offset-y="525" style="flex: 1 0 0; margin: auto 0;"></div>
159 <div data-expected-height="350" data-offset-y="175" class="horizontal-tb" style="flex: 2 0 0; padding: 100px 0;"></div>
160 <div data-expected-height="75" data-offset-y="0" style="flex: 1 0 0; -webkit-margin-start: 100px;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000161</div>
162</div>
163
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000164<div class="flexbox vertical-lr">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000165 <div data-expected-height="350" style="flex: 1 1 400px; min-height: 350px;"></div>
166 <div data-expected-height="250" style="flex: 1 1 400px;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000167</div>
168
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000169<div style="position:relative">
ojan@chromium.org92bf5d32011-09-21 17:00:43 +0000170<div class="flexbox vertical-rl">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000171 <div data-expected-height="150" data-offset-y="0" data-offset-x="580" style="flex: 1 0 0;"></div>
172 <div data-expected-height="300" data-offset-y="150" data-offset-x="580" style="flex: 2 0 0;"></div>
173 <div data-expected-height="150" data-offset-y="450" data-offset-x="580" style="flex: 1 0 0;"></div>
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000174</div>
175</div>
176
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000177<div style="position:relative">
ojan@chromium.org82538602011-10-06 00:01:28 +0000178<div class="flexbox vertical-rl">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000179 <div data-expected-height="150" data-offset-y="0" data-offset-x="480" style="flex: 1 0 0; margin: 0 100px 0 50px;"></div>
180 <div data-expected-height="300" data-offset-y="150" data-offset-x="580" style="flex: 2 0 0;"></div>
181 <div data-expected-height="150" data-offset-y="450" data-offset-x="580" style="flex: 1 0 0;"></div>
ojan@chromium.org82538602011-10-06 00:01:28 +0000182</div>
183</div>
184
ojan@chromium.orgdc783b12011-09-27 21:45:54 +0000185<div style="position: relative;">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000186 <div data-expected-width="600" style="direction: rtl; display: flex; margin-left: 10px; margin-right:20px;" class="flexbox">
187 <div data-expected-width="75" data-offset-x="535" style="flex: 1 0 0; margin: 0 auto;"></div>
188 <div data-expected-width="350" data-offset-x="185" style="flex: 2 0 0; padding: 0 100px;"></div>
189 <div data-expected-width="75" data-offset-x="10" style="flex: 1 0 0;margin-right: 100px;"></div>
ojan@chromium.orgdc783b12011-09-27 21:45:54 +0000190 </div>
191</div>
192
193<div style="position: relative;">
hyatt@apple.com247170f2017-02-28 16:23:15 +0000194 <div data-expected-width="700" style="direction: rtl; display: flex; padding-left: 10px; padding-right: 20px; border-style: solid; border-left: 30px solid; border-right: 40px solid;" class="flexbox ">
195 <div data-expected-width="75" data-offset-x="565" style="flex: 1 0 0; margin: 0 auto;"></div>
196 <div data-expected-width="350" data-offset-x="215" style="flex: 2 0 0; padding: 0 100px;"></div>
197 <div data-expected-width="75" data-offset-x="40" style="flex: 1 0 0;margin-right: 100px;"></div>
ojan@chromium.orgdc783b12011-09-27 21:45:54 +0000198 </div>
199</div>
200
ojan@chromium.orgdc30af12011-09-20 22:46:19 +0000201</body>
rniwa@webkit.org42948af2012-06-11 18:23:57 +0000202</html>