blob: 06393efe9e903f91121a1b5039a7313e7756da62 [file] [log] [blame]
tony@chromium.org1cbfd642012-03-29 17:16:39 +00001<!DOCTYPE html>
2<html>
3<style>
4.flexbox {
5 position: relative;
tony@chromium.org3f320ee2012-05-17 03:19:31 +00006 display: -webkit-flex;
tony@chromium.org1cbfd642012-03-29 17:16:39 +00007 background-color: grey;
8 width: 600px;
9 height: 20px;
10}
11.title {
12 margin-top: 1em;
13}
14.ltr {
15 direction: ltr;
16}
17.rtl {
18 direction: rtl;
19}
20.horizontal-tb {
21 -webkit-writing-mode: horizontal-tb;
22}
23.horizontal-bt {
24 -webkit-writing-mode: horizontal-bt;
25}
26.column {
27 -webkit-flex-flow: column;
28}
29.column-reverse {
30 -webkit-flex-flow: column-reverse;
31}
32.wrap {
33 -webkit-flex-wrap: wrap;
34}
35.wrap-reverse {
36 -webkit-flex-wrap: wrap-reverse;
37}
tony@chromium.org354e7e92012-06-02 08:15:04 +000038.align-content-flex-start {
39 -webkit-align-content: flex-start;
tony@chromium.org1cbfd642012-03-29 17:16:39 +000040}
tony@chromium.org354e7e92012-06-02 08:15:04 +000041.align-content-flex-end {
42 -webkit-align-content: flex-end;
tony@chromium.org1cbfd642012-03-29 17:16:39 +000043}
tony@chromium.org730973c2012-06-01 23:18:21 +000044.align-content-center {
45 -webkit-align-content: center;
tony@chromium.org1cbfd642012-03-29 17:16:39 +000046}
tony@chromium.org730973c2012-06-01 23:18:21 +000047.align-content-space-between {
48 -webkit-align-content: space-between;
tony@chromium.org1cbfd642012-03-29 17:16:39 +000049}
tony@chromium.org730973c2012-06-01 23:18:21 +000050.align-content-space-around {
51 -webkit-align-content: space-around;
tony@chromium.org1cbfd642012-03-29 17:16:39 +000052}
tony@chromium.org730973c2012-06-01 23:18:21 +000053.align-content-stretch {
54 -webkit-align-content: stretch;
tony@chromium.org1cbfd642012-03-29 17:16:39 +000055}
56.flexbox > :nth-child(1) {
57 background-color: blue;
58}
59.flexbox > :nth-child(2) {
60 background-color: green;
61}
62</style>
tony@chromium.orgb1541ca2012-07-13 19:58:47 +000063<script src="../../resources/check-layout.js"></script>
64<body onload="checkLayout('.flexbox')">
tony@chromium.org1cbfd642012-03-29 17:16:39 +000065
66<script>
67var expectations = {
68 'horizontal-tb': {
69 'column': {
70 'ltr': {
71 'wrap': {
tony@chromium.org354e7e92012-06-02 08:15:04 +000072 'flex-start': [0, 100],
73 'flex-end': [400, 500],
tony@chromium.org1cbfd642012-03-29 17:16:39 +000074 'center': [200, 300],
tony@chromium.org307f3a92012-05-30 21:12:55 +000075 'space-between': [0, 500],
76 'space-around': [100, 400],
tony@chromium.org1cbfd642012-03-29 17:16:39 +000077 'stretch': [0, 300],
78 },
79 'wrap-reverse': {
tony@chromium.org354e7e92012-06-02 08:15:04 +000080 'flex-start': [500, 400],
81 'flex-end': [100, 0],
tony@chromium.org1cbfd642012-03-29 17:16:39 +000082 'center': [300, 200],
tony@chromium.org307f3a92012-05-30 21:12:55 +000083 'space-between': [500, 0],
84 'space-around': [400, 100],
tony@chromium.org1cbfd642012-03-29 17:16:39 +000085 'stretch': [300, 0],
86 },
87 },
88 'rtl': {
89 'wrap': {
tony@chromium.org354e7e92012-06-02 08:15:04 +000090 'flex-start': [500, 400],
91 'flex-end': [100, 0],
tony@chromium.org1cbfd642012-03-29 17:16:39 +000092 'center': [300, 200],
tony@chromium.org307f3a92012-05-30 21:12:55 +000093 'space-between': [500, 0],
94 'space-around': [400, 100],
tony@chromium.org1cbfd642012-03-29 17:16:39 +000095 'stretch': [300, 0],
96 },
97 'wrap-reverse': {
tony@chromium.org354e7e92012-06-02 08:15:04 +000098 'flex-start': [0, 100],
99 'flex-end': [400, 500],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000100 'center': [200, 300],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000101 'space-between': [0, 500],
102 'space-around': [100, 400],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000103 'stretch': [0, 300],
104 },
105 },
106 },
107 // Same as column.
108 'column-reverse': {
109 'ltr': {
110 'wrap': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000111 'flex-start': [0, 100],
112 'flex-end': [400, 500],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000113 'center': [200, 300],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000114 'space-between': [0, 500],
115 'space-around': [100, 400],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000116 'stretch': [0, 300],
117 },
118 'wrap-reverse': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000119 'flex-start': [500, 400],
120 'flex-end': [100, 0],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000121 'center': [300, 200],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000122 'space-between': [500, 0],
123 'space-around': [400, 100],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000124 'stretch': [300, 0],
125 },
126 },
127 'rtl': {
128 'wrap': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000129 'flex-start': [500, 400],
130 'flex-end': [100, 0],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000131 'center': [300, 200],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000132 'space-between': [500, 0],
133 'space-around': [400, 100],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000134 'stretch': [300, 0],
135 },
136 'wrap-reverse': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000137 'flex-start': [0, 100],
138 'flex-end': [400, 500],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000139 'center': [200, 300],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000140 'space-between': [0, 500],
141 'space-around': [100, 400],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000142 'stretch': [0, 300],
143 },
144 },
145 },
146 },
147 'horizontal-bt': {
148 // Same as horizontal-tb.
149 'column': {
150 'ltr': {
151 'wrap': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000152 'flex-start': [0, 100],
153 'flex-end': [400, 500],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000154 'center': [200, 300],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000155 'space-between': [0, 500],
156 'space-around': [100, 400],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000157 'stretch': [0, 300],
158 },
159 'wrap-reverse': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000160 'flex-start': [500, 400],
161 'flex-end': [100, 0],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000162 'center': [300, 200],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000163 'space-between': [500, 0],
164 'space-around': [400, 100],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000165 'stretch': [300, 0],
166 },
167 },
168 'rtl': {
169 'wrap': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000170 'flex-start': [500, 400],
171 'flex-end': [100, 0],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000172 'center': [300, 200],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000173 'space-between': [500, 0],
174 'space-around': [400, 100],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000175 'stretch': [300, 0],
176 },
177 'wrap-reverse': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000178 'flex-start': [0, 100],
179 'flex-end': [400, 500],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000180 'center': [200, 300],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000181 'space-between': [0, 500],
182 'space-around': [100, 400],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000183 'stretch': [0, 300],
184 },
185 },
186 },
187 'column-reverse': {
188 'ltr': {
189 'wrap': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000190 'flex-start': [0, 100],
191 'flex-end': [400, 500],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000192 'center': [200, 300],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000193 'space-between': [0, 500],
194 'space-around': [100, 400],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000195 'stretch': [0, 300],
196 },
197 'wrap-reverse': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000198 'flex-start': [500, 400],
199 'flex-end': [100, 0],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000200 'center': [300, 200],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000201 'space-between': [500, 0],
202 'space-around': [400, 100],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000203 'stretch': [300, 0],
204 },
205 },
206 'rtl': {
207 'wrap': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000208 'flex-start': [500, 400],
209 'flex-end': [100, 0],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000210 'center': [300, 200],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000211 'space-between': [500, 0],
212 'space-around': [400, 100],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000213 'stretch': [300, 0],
214 },
215 'wrap-reverse': {
tony@chromium.org354e7e92012-06-02 08:15:04 +0000216 'flex-start': [0, 100],
217 'flex-end': [400, 500],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000218 'center': [200, 300],
tony@chromium.org307f3a92012-05-30 21:12:55 +0000219 'space-between': [0, 500],
220 'space-around': [100, 400],
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000221 'stretch': [0, 300],
222 },
223 },
224 },
225 },
226};
227
228function mainAxisDirection(writingMode, flexDirection)
229{
230 if ((writingMode.indexOf('horizontal') != -1 && flexDirection.indexOf('row') != -1)
231 || (writingMode.indexOf('vertical') != -1 && flexDirection.indexOf('column') != -1))
232 return 'width';
233 return 'height';
234}
235
tony@chromium.org730973c2012-06-01 23:18:21 +0000236function addChild(flexbox, preferredSize, alignContent, expected_x_offset)
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000237{
238 var child = document.createElement('div');
tony@chromium.org176a7c92012-04-03 22:34:03 +0000239 child.setAttribute('style', '-webkit-flex: 1 ' + preferredSize + 'px;'
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000240 + 'min-width: 100px');
241
tony@chromium.org730973c2012-06-01 23:18:21 +0000242 child.setAttribute("data-expected-width", alignContent == "stretch" ? "300" : "100");
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000243 child.setAttribute("data-expected-height", "20");
244 child.setAttribute("data-offset-y", "0");
245 child.setAttribute("data-offset-x", expected_x_offset);
246
247 flexbox.appendChild(child);
248}
249
250var writingModes = ['horizontal-tb', 'horizontal-bt'];
251var flexDirections = ['column', 'column-reverse'];
252var directions = ['ltr', 'rtl'];
253var wraps = ['wrap', 'wrap-reverse'];
tony@chromium.org354e7e92012-06-02 08:15:04 +0000254var alignContents = ['flex-start', 'flex-end', 'center', 'space-between', 'space-around', 'stretch'];
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000255
256writingModes.forEach(function(writingMode) {
257 flexDirections.forEach(function(flexDirection) {
258 directions.forEach(function(direction) {
259 wraps.forEach(function(wrap) {
tony@chromium.org730973c2012-06-01 23:18:21 +0000260 alignContents.forEach(function(alignContent) {
261 var flexboxClassName = writingMode + ' ' + direction + ' ' + flexDirection + ' ' + wrap + ' align-content-' + alignContent;
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000262 var title = document.createElement('div');
263 title.className = 'title';
264 title.innerHTML = flexboxClassName;
265 document.body.appendChild(title);
266
267 var mainAxis = 'height';
268 var crossAxis = 'width';
269
270 var flexbox = document.createElement('div');
271 flexbox.className = 'flexbox ' + flexboxClassName;
272 flexbox.setAttribute("data-expected-width", "600");
273 flexbox.setAttribute("data-expected-height", "20");
274
tony@chromium.org730973c2012-06-01 23:18:21 +0000275 var testExpectations = expectations[writingMode][flexDirection][direction][wrap][alignContent];
276 addChild(flexbox, 20, alignContent, testExpectations[0]);
277 addChild(flexbox, 5, alignContent, testExpectations[1]);
tony@chromium.org1cbfd642012-03-29 17:16:39 +0000278
279 document.body.appendChild(flexbox);
280 })
281 })
282 })
283 })
284})
285</script>
286</body>
287</html>