1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
|
id references title flags links revision credits assertion
align-content-001 reference/align-content-001-ref A multi-line flex container with the 'align-content' property set to 'center' http://www.w3.org/TR/css-flexbox-1/#align-content-property fef3efe3e5cd11de1b905aba10c750ed95c1e34a `Microsoft`<http://www.microsoft.com/> This test checks that a multi-line flex container with 'align-content: center' centers lines in the flex container.
align-content-002 reference/align-content-001-ref A multi-line flex container with the 'align-content' property set to 'flex-start' http://www.w3.org/TR/css-flexbox-1/#align-content-property 190b201ce64305bbc31e1aac68440f107d0b0d37 `Microsoft`<http://www.microsoft.com/> This test checks that a multi-line flex container with 'align-content: flex-start' packs lines toward the start of the flex container.
align-content-003 reference/align-content-001-ref A multi-line flex container with the 'align-content' property set to 'flex-end' http://www.w3.org/TR/css-flexbox-1/#align-content-property 756731440b6e3954113add77eb19ae4059971216 `Microsoft`<http://www.microsoft.com/> This test checks that a multi-line flex container with 'align-content: flex-end' packs lines toward the end of the flex container.
align-content-004 reference/align-content-001-ref A multi-line flex container with the 'align-content' property set to 'space-between' http://www.w3.org/TR/css-flexbox-1/#align-content-property 34f53f21d8e29643dc7d4e0a682fe2cf3efc0aba `Microsoft`<http://www.microsoft.com/> This test checks that a multi-line flex container with 'align-content: space-between' distributes lines evenly in the flex container.
align-content-005 reference/align-content-001-ref A multi-line flex container with the 'align-content' property set to 'space-around' http://www.w3.org/TR/css-flexbox-1/#align-content-property 39ab5998ee1c4086345153b7bab6547c8ae637e0 `Microsoft`<http://www.microsoft.com/> This test checks that a multi-line flex container with 'align-content: space-around' distributes lines evenly in the flex container, with half-size spaces on either end.
align-content-006 reference/align-content-001-ref A multi-line flex container with the 'align-content' property set to 'stretch' http://www.w3.org/TR/css-flexbox-1/#align-content-property 8e1982659c3168b4fc4291d3c9489ab867514f5e `Microsoft`<http://www.microsoft.com/> This test checks that a multi-line flex container with 'align-content: stretch' stretches lines to take up the remaining space.
align-content_center align-content_center http://www.w3.org/TR/css-flexbox-1/#align-content-property 3bc06cae9ac8f6e20e1e3bfdb8ffe418ea4e813d `Intel`<http://www.intel.com> Check if the web engine can identify the align-content value center.
align-content_flex-end align-content_flex-end http://www.w3.org/TR/css-flexbox-1/#align-content-property 30de9d16bf6866cea70dd5a4ee40ff708f45ed82 `Intel`<http://www.intel.com> Check if the web engine can identify the align-content value flex-end.
align-content_flex-start align-content_flex-start http://www.w3.org/TR/css-flexbox-1/#align-content-property c95a94532734a5ebb9b289bf24fc5b490c961957 `Intel`<http://www.intel.com> Check if the web engine can identify the align-content value flex-start.
align-content_space-around align-content_space-around http://www.w3.org/TR/css-flexbox-1/#align-content-property cf480567e09a3b0b23d30092ab9dcbb6b67f2a06 `Intel`<http://www.intel.com> Check if the web engine can identify align-content value space-around.
align-content_space-between align-content_space-between http://www.w3.org/TR/css-flexbox-1/#align-content-property 3ffa26884e25266dc12c601966c6938908753e1c `Intel`<http://www.intel.com> Check if the display can recognize inline-flex value.
align-content_stretch align-content_stretch http://www.w3.org/TR/css-flexbox-1/#align-content-property 6b920e56b35478d018ae1d2b0522ec226aa9bd56 `Intel`<http://www.intel.com> Check if the web engine can identify the align-content value stretch.
align-items-001 reference/align-content-001-ref A flex container with the 'align-items' property set to 'center' http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 4ec90267d588987280f145d8df8ac6f061999258 `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'align-items: center' centers each flex item's margin box in the cross-axis of its line.
align-items-002 reference/align-content-001-ref A flex container with the 'align-items' property set to 'flex-start' http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-items ba2dfa0b337d281eb321868358df2435c600506b `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'align-items: flex-start' places each flex item's margin box flush with the cross-start edge of line.
align-items-003 reference/align-content-001-ref A flex container with the 'align-items' property set to 'flex-end' http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 0864a7e2510be86698e7eafc6c3853f7e3448596 `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'align-items: flex-end' places each flex item's margin box flush with the cross-end edge of line.
align-items-004 reference/align-content-001-ref A flex container with the 'align-items' property set to 'baseline' ahem http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-items a2ade60ce94bb9608abdcdb10affbbe2b6ba0637 `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'align-items: baseline' places each flex item's margin box so that their baselines align.
align-items-005 reference/align-content-001-ref A flex container with the 'align-items' property set to 'stretch' http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-items aa76f8315736ed389b671e843e2bff79d9642d16 `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'align-items: stretch' places each flex item's margin box so that its cross size is the same as the cross size of the line.
align-self-001 reference/ref-filled-green-100px-square align-self - flex-start http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 0cc4990fc47d11d97de1460c7229b2a9ae83854e `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'flex-start' aligns the flex items to the start edge of cross axis
align-self-002 reference/ref-filled-green-100px-square align-self - flex-end http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 76ff8530ed54bf734655e7b061bda90fe575da6a `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'flex-end' aligns the flex items to the end edge of cross axis
align-self-003 reference/ref-filled-green-100px-square align-self - center http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 1ce28e4e595a2f36bd3c9a74033a3a72da36f37f `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'center' centered the flex items in the cross axis within the line
align-self-004 reference/ref-filled-green-100px-square align-self - stretch http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self e07644c7ce7601750f39d681ee9aea5dc72e888d `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'stretch' makes the cross size of the item's margin box as close to the same size as the line as possible
align-self-005 reference/ref-filled-green-100px-square align-self - stretch (height: number) http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 4ffd7f73199bdfd77d31095d4d4126782e59db5a `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'stretch' will be invalid while cross size of the flex item set exact number
align-self-006 align-self - baseline http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 0aac8117fbe0abfc970d00541545e63d96d62b2e `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'baseline' aligns the flex items to the baseline of content
align-self-007 reference/ref-filled-green-100px-square align-self - auto and align-items - flex-start http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self,http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 08a37ab62ab05aace2c1936bdfd4da408f44ae92 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'auto' aligns flex items to start edge of cross-axis when 'align-items' set 'flex-start'
align-self-008 reference/ref-filled-green-100px-square align-self - auto and align-items - flex-end http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 68b946c4e6e0871e6fae61bcc6c1c12efb48c760 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'auto' aligns flex items to end edge of cross-axis when 'align-items' set 'flex-end'
align-self-009 reference/ref-filled-green-100px-square align-self - auto and align-items - center http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 1edea6e4b18b8e4bec4d0303d6f4dc07548e7e98 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'auto' will center flex items the flex items in the cross axis when 'align-items' set 'center'
align-self-010 align-self - auto and align-items - baseline http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self f38470b8bca80980d4f3c797246367fc1669c0b1 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'auto' aligns the flex items to the baseline of content when 'align-items' set 'baseline'
align-self-011 reference/ref-filled-green-100px-square align-self - auto and align-items - stretch http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self f6b0b0c7d8a543164b3a07710ccc28902014f7b8 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property set 'auto' makes the cross size of the item's margin box as close to the same size as the line as possible when 'align-items' set 'stretch'
align-self-012 reference/ref-filled-green-100px-square align-self - auto (initial value) http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 34bdc9d96afd87a8c296f0fc12909f6d3dca4fc4 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The initial value of 'align-self' property is 'auto'
align-self-013 reference/ref-filled-green-100px-square align-self - invalid if applied to flex container http://www.w3.org/TR/css-flexbox-1/#align-items-property,http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 47f5f5f57c21ef2f72b97af85c8854d6afd1ba61 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'align-self' property is invalid if applied to flex container
autoheight-flexbox-001 reference/autoheight-flexbox-001-ref CSS Regions: fixed height flexbox inside auto height region http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 3128084e46668edfc50d9a7f3a9d6258e7f8b3f5 `Catalin Badea`<mailto:badea@adobe.com> Test that flowing a flex container inside a region with auto-height will enlarge the region to fit the content.
autoheight-flexbox-002 reference/regions-flexbox-002-ref CSS Regions: flowing auto-height flexbox elements in region ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 345f18df42c54ea9b42a19a99da1799c885517ca `Catalin Badea`<mailto:badea@adobe.com> Test that a flex container with auto height is flowed correctly inside a region with auto height. The region should fit the flexbox.
autoheight-flexbox-003 reference/autoheight-flexbox-003-ref CSS Regions: auto height region inside a fixed sized flexbox ahem http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 004710b1f015f6add1230601f1dd4e91e3d11967 `Catalin Badea`<mailto:badea@adobe.com> Test that an auto-height region inside a flexbox is stretched to match the flexbox container's cross size.
autoheight-flexbox-004 reference/autoheight-flexbox-003-ref CSS Regions: auto height region inside an auto height flexbox ahem http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm ced05eb88edefbfbf87d09d9417cc9b5e4fdf60a `Catalin Badea`<mailto:badea@adobe.com> Test that an auto height region inside a flex container with auto height is displayed properly. The flexbox should have the same height as the region.
autoheight-regions-in-autoheight-flexbox-001 reference/autoheight-regions-in-autoheight-flexbox-001-ref CSS Regions: Auto-height regions in auto-height flex container ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap,http://www.w3.org/TR/css-flexbox-1/#flex-direction-property,http://www.w3.org/TR/css-flexbox-1/#flex-flow-property f73cb2b3f7e27477a602f27d2cb845144bb6153e `Catalin Badea`<mailto:badea@adobe.com> Test that auto-height regions placed in a flex container with auto-height and row wrap reverse flow are sized correctly. The content from the second flow should flow through the region on the second row and into the region from the first row, making the left blue rectangle taller than the green rectangle on the right.
autoheight-regions-in-autoheight-flexbox-002 reference/autoheight-regions-in-autoheight-flexbox-002-ref CSS Regions: Auto-height regions with vertical writing mode in auto-height flexbox ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#flex-direction-property,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode 03903463d0ee57e784c8305fc4b3c522d62beb38 `Catalin Badea`<mailto:badea@adobe.com> Test checks that auto-height regions having content with vertical writing mode are sized correctly when placed inside a flex container. The flowed content should be displayed as a horizontal green stripe.
autoheight-regions-in-autoheight-flexbox-003 reference/autoheight-regions-in-autoheight-flexbox-003-ref CSS Regions: auto-height regions in auto-height flexbox with flex basis ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css3-regions/#propdef-break-after,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#flex-basis 8beffe2fac2dcde17387196c1fb5aa41bc8383eb `Catalin Badea`<mailto:badea@adobe.com> Test checks that the computed height of auto-height regions placed in a flex container takes into the account the flex basis property. The space available inside the flex container should be distributed according to the flex basis property. In this particular case, each of the three regions must have a height equal to one third of the flex container's height.
autoheight-regions-in-autoheight-flexbox-004 reference/autoheight-regions-in-autoheight-flexbox-004-ref CSS Regions: nested regions in flexbox ahem http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#flex-direction 746e0a434c98b9f994aa99f5a64e85677234f12a `Catalin Badea`<mailto:badea@adobe.com> Test checks that nested regions placed in flex containers are laid out properly. The first flow (blue content) is nested inside the second flow (green content). The user should see three horizontal stripes with the following colors: green, blue, green.
autoheight-regions-in-fixed-sized-flexbox-001 reference/autoheight-regions-in-fixed-sized-flexbox-001-ref CSS Regions: Auto-height regions inside fixed sized flexbox ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow a5838be97d917d20036c1bfe63b1da770d6a8eb7 `Catalin Badea`<mailto:badea@adobe.com> Test checks that auto-height regions respect the flex grow property when placed inside a fixed sized flexbox with a single row.
autoheight-regions-in-fixed-sized-flexbox-002 reference/autoheight-regions-in-fixed-sized-flexbox-002-ref CSS Regions: Auto-height regions inside fixed sized flexbox with column flow ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow 7b07c590d0b253ac8d557aa53b1acfbadf1b1d83 `Catalin Badea`<mailto:badea@adobe.com> Test checks that auto-height regions placed inside a fixed sized flexbox with column flow have the correct computed height. There are two regions placed inside the same flex container having the same 'grow' value. The space should be distributed evenly between the two.
autoheight-regions-in-fixed-sized-flexbox-003 reference/autoheight-regions-in-fixed-sized-flexbox-003-ref CSS Regions: Auto-height regions inside a fixed sized flexbox with column wrap flow ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 54fb8e57ddfcb9cdd4b8918ae7abc063505ca434 `Catalin Badea`<mailto:badea@adobe.com> Test checks the layout of auto-height regions placed inside a flexbox with a fixed size and column wrap flow. The flex container should have two columns with three regions each.
autoheight-regions-in-fixed-sized-flexbox-004 reference/autoheight-regions-in-fixed-sized-flexbox-004-ref CSS Regions: Auto-height region in fixed sized flexbox using flex basis ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 673144fd5a9a9787f17576f89554e70cf10d5d74 `Catalin Badea`<mailto:badea@adobe.com> Test checks the layout of regions placed inside a fixed sized flexbox using flex basis and column flow. The flex container should force the first region to break by constraining its height.
autoheight-regions-in-fixed-sized-flexbox-005 reference/autoheight-regions-in-fixed-sized-flexbox-005-ref CSS Regions: Auto-height regions in fixed sized flexboxes with align-items and justify-content http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 521595ef4fcf87065ea6d27a3369d6318933dcb7 `Catalin Badea`<mailto:badea@adobe.com> Test checks auto-height regions' layout when placed inside a flexbox with using align-items and justify-content properties. The flowed content should be fragmented between the three regions and the flex container should distribute the remaining horizontal space evenly around the regions.
autoheight-regions-in-fixed-sized-flexbox-006 reference/autoheight-regions-in-fixed-sized-flexbox-006-ref CSS Regions: auto-height regions inside a flex container with fixed size http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap dc449db0ddf6d155ff8d56e1bd446e3dbb6d1062 `Catalin Badea`<mailto:badea@adobe.com> Test that the flex container stretches a region flex item with a height smaller than the flex container's inner cross size.
autoheight-regions-in-fixed-sized-flexbox-007 reference/autoheight-regions-in-fixed-sized-flexbox-007-ref CSS Regions: auto-height regions inside fixed sized flexbox ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm b75064d6dba2fdb2cce5aa33d34a026e27edc344 `Catalin Badea`<mailto:badea@adobe.com> Test that using the flex-basis property sizes the flex items to a percentage of the flex container's height when said items are auto-height regions. The last region, the outside the flex container should not be visible.
autoheight-regions-in-fixed-sized-flexbox-008 reference/autoheight-regions-in-fixed-sized-flexbox-008-ref CSS Regions: auto-height regions with max height in fixed sized flexbox ahem http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution,http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm ea64b7e570b77e26c14667899a6f07be7629a859 `Catalin Badea`<mailto:badea@adobe.com> Test that the max-height property is applied to regions placed inside a fixed sized flexbox with a column flow. The flex container should not flex the region flex items beyond their max height value.
column-flexbox-break reference/column-flexbox-break-ref CSS Regions: fragmenting a flex container with column flow ahem http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#flex-containers,http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 447d07932ea88069d2350bf6201a4f4b8261ea21 `Catalin Badea`<mailto:badea@adobe.com> Test checks that a flex container with column flow is fragmented between regions.
css-box-justify-content reference/css-box-justify-content-ref flexbox |css-box-justify-content http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 8eb9ef235feb6bf970b0c71c58e98e639d447352 `xiaoxia`<ava656094@gmail.com>
css-flexbox-column reference/css-flexbox-column-ref flex direction: row http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 2e5bf4ca2fcfceb11ea7a14828ed53b096385155 `Naoki Okada`<mailto:somathor@gmail.com> Test checks that when writing mode is vertical and flex-flow: column, the flex container is vertical.
css-flexbox-column-reverse reference/css-flexbox-column-ref flex direction: row http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow a4226108be2f0af901413339910960676e0aeab3 `Naoki Okada`<mailto:somathor@gmail.com> Test checks that when writing mode is vertical and flex-flow: column, the flex container is vertical.
css-flexbox-column-reverse-wrap reference/css-flexbox-column-ref flex direction: row http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 8c9461d7bb8e46a2173f6651e3596f1ea0650e94 `Naoki Okada`<mailto:somathor@gmail.com> Test checks that when writing mode is vertical and flex-flow: column wrap, the flex container is vertical.
css-flexbox-column-reverse-wrap-reverse reference/css-flexbox-column-ref flex direction: row http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 151160ed3d2ad2d58e598e4b1027bbc483dcc957 `Naoki Okada`<mailto:somathor@gmail.com> Test checks that when writing mode is vertical and flex-flow: column wrap-reverse, the flex container is vertical.
css-flexbox-column-wrap reference/css-flexbox-column-ref flex direction: row http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 81bfe00b93f428cb9c18db56c7403d4b3fa8423e `Naoki Okada`<mailto:somathor@gmail.com> Test checks that when writing mode is vertical and flex-flow: column wrap, the flex container is vertical.
css-flexbox-column-wrap-reverse reference/css-flexbox-column-ref flex direction: row http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 7a03ee23187886a90b8d25cf2f83ea452454b769 `Naoki Okada`<mailto:somathor@gmail.com> Test checks that when writing mode is vertical and flex-flow: column wrap-reverse, the flex container is vertical.
css-flexbox-height-animation-stretch reference/css-flexbox-height-animation-stretch-ref Items stretch correctly while content is animating http://www.w3.org/TR/css-flexbox-1/#propdef-align-items c0ec675efc75f1316a44fd2ab919ba9001af8b79 `Micky Brunetti`<mailto:micky2be@gmail.com> Items should stretch vertically in all time
css-flexbox-img-expand-evenly reference/css-flexbox-img-expand-evenly-ref Image Expansion http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow a3d322e0c668c00cb991d7016ab1e7b025d493b2 `Eiji Kitamura`<mailto:agektmr@gmail.com> 3 rectangular images fill out border.
css-flexbox-row reference/css-flexbox-row-ref flex direction: row, writing mode vertical http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode 2095a3cec191a88ee70b6fa4f9186cc94aba326b `Tsutomu ogaoga Ogasawara`<mailto:info@ogaoga.org> Test checks that when writing mode is vertical and flex-flow: row, the flex container is vertical.
css-flexbox-row-reverse reference/css-flexbox-row-ref flex direction: row, writing mode vertical http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode 0cc3d0f04358dfedc826c7185067510092468290 `Tsutomu ogaoga Ogasawara`<mailto:info@ogaoga.org> Test checks that when writing mode is vertical and flex-flow: row-reverse, the flex container is vertical.
css-flexbox-row-reverse-wrap reference/css-flexbox-row-ref flex direction: row, writing mode vertical http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode af5da24a6d34f820f9208e2d02eecedc044a7859 `Tsutomu ogaoga Ogasawara`<mailto:info@ogaoga.org> Test checks that when writing mode is vertical and flex-flow: row-reverse wrap, the flex container is vertical.
css-flexbox-row-reverse-wrap-reverse reference/css-flexbox-row-ref flex direction: row, writing mode vertical http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode 01014629935eb4a0926836e06888db388ed75ff7 `Tsutomu ogaoga Ogasawara`<mailto:info@ogaoga.org> Test checks that when writing mode is vertical and flex-flow: row-reverse wrap-reverse, the flex container is vertical.
css-flexbox-row-wrap reference/css-flexbox-row-ref flex direction: row, writing mode vertical http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode 0ea199bc95c19bfdd73497a22bf49819b4b23d59 `Tsutomu ogaoga Ogasawara`<mailto:info@ogaoga.org> Test checks that when writing mode is vertical and flex-flow: row wrap, the flex container is vertical.
css-flexbox-row-wrap-reverse reference/css-flexbox-row-ref flex direction: row, writing mode vertical http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode a317095a9cf1aa23dfdc9105c21f7567b4dde075 `Tsutomu ogaoga Ogasawara`<mailto:info@ogaoga.org> Test checks that when writing mode is vertical and flex-flow: row wrap-reverse, the flex container is vertical.
css-flexbox-test1 reference/css-flexbox-test1-ref flex direction: row, writing mode vertical http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow ec7b52168d5d6bd0ea658e5dfa74df6fa1932dd4 `Tsutomu ogaoga Ogasawara`<mailto:info@ogaoga.org> Test checks that when writing mode is vertical and flex-flow: row, the flex container is vertical.
display-flex-001 reference/align-content-001-ref An element with the 'display' property set to 'flex' establishes a new block-level flex container http://www.w3.org/TR/css-flexbox-1/#flex-containers b28bb6c80284c5d838f0fd137133c592e214031d `Microsoft`<http://www.microsoft.com/> This test checks that an element with 'display' property set to 'flex' establishes a new block-level flex container.
display_flex_exist display_flex dom,script http://www.w3.org/TR/css-flexbox-1/#flex-containers d3b1b0e42faf6629b7df76679260d7f6fdb89ca3 `Intel`<http://www.intel.com> Check if the web engine can indenfy the display value flex.
display_inline-flex_exist display_inline-flex dom,script http://www.w3.org/TR/css-flexbox-1/#flex-containers a67a06a83ddc9193dfca5327350167eb5bcfbbc8 `Intel`<http://www.intel.com> Check if the web engine can identify the display value inline-flex.
flex-001 reference/justify-content-001-ref The 'flex' shorthand adjusting the 'flex-grow' sub-property http://www.w3.org/TR/css-flexbox-1/#flex-property 032ae1ca52f3cff3a2a8ec508cb6b5f4630fb26b `Microsoft`<http://www.microsoft.com/> This test checks that the flex grow factor determines the distribution of positive free space.
flex-002 reference/justify-content-001-ref The 'flex' shorthand adjusting the 'flex-shrink' sub-property http://www.w3.org/TR/css-flexbox-1/#flex-property 5eef65fc72a6f76892ec7c3e1502ace587d400e8 `Microsoft`<http://www.microsoft.com/> This test checks that the flex shrink factor is multiplied by the flex base size when distributing negative space.
flex-003 reference/justify-content-001-ref Comparing two different elements using different values for the 'flex-grow' sub-property on the 'flex' shorthand http://www.w3.org/TR/css-flexbox-1/#flex-property aa083c3c37e6ccf91569adfb76e7fbfd26af5cf0 `Microsoft`<http://www.microsoft.com/> This test checks that the flex items with a different flex grow factor have different flexibilities.
flex-004 reference/justify-content-001-ref Comparing two different elements using different values for the 'flex-shrink' sub-property on the 'flex' shorthand http://www.w3.org/TR/css-flexbox-1/#flex-property eacca20d92c3fd3ae90aa6531733d8112ea48f07 `Microsoft`<http://www.microsoft.com/> This test checks that the flex items with a different flex shrink factor have different flexibilities.
flex-align-items-center reference/flex-align-items-center-ref CSS Flex-basis Test http://www.w3.org/TR/css-flexbox-1/#alignment b0c25464d925ac14a19de215685135c15a2b4540 `Chunsheng Zhang`<mailto:zhangcs_423@163.com> flex items center
flex-basis-001 reference/ref-filled-green-100px-square flex-basis - positive number http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis cf4c8932cb4704bae235021bc2c0bde3e94bf71d `http://www.intel.com`<Intel>,`mailto:shiyoux.tan@intel.com`<Intel> The 'flex-basis' property set positive number, the actual value of test element size is same as the positive number
flex-basis-002 reference/ref-filled-green-100px-square flex-basis - positive number http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis bd0b95ddbaf7caf8595c5f24cdb25e24f8312f0e `http://www.intel.com`<Intel>,`mailto:shiyoux.tan@intel.com`<Intel> The 'flex-basis' property specified correct value, the actual value of test element size is same as to the value of 'flex-basis' property, and the 'width' property is invalid.
flex-basis-003 reference/ref-filled-green-100px-square flex-basis - negative number(width not specified) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis 75bc5a47afacb6416a93c6eb0fd876c4ad288f76 `http://www.intel.com`<Intel>,`mailto:shiyoux.tan@intel.com`<Intel> The 'flex-basis' property set negative number, the tested element is not shown when width not set either.
flex-basis-004 reference/ref-filled-green-100px-square flex-basis - negative number(width specified) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis 7febd49b5358e1bd05b52955369a7d1e13459aa3 `http://www.intel.com`<Intel>,`mailto:shiyoux.tan@intel.com`<Intel> The 'flex-basis' property set negative number, the actual width of tested element is same as the value of 'width' property specified.
flex-basis-005 reference/ref-filled-green-100px-square flex-basis - 0 http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis 8d6540f232ce13f26dcf1aaa286f76c8b06982e1 `http://www.intel.com`<Intel>,`mailto:shiyoux.tan@intel.com`<Intel> The 'flex-basis' property set '0', the actual width of tested element is same as 0.
flex-basis-006 reference/ref-filled-green-100px-square flex-basis - 0% http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis 0844da965929e2caa63e88ebcd658b8da1f0d2ee `http://www.intel.com`<Intel>,`mailto:shiyoux.tan@intel.com`<Intel> The 'flex-basis' property set '0%', the actual width of tested element is same as 0.
flex-basis-007 reference/ref-filled-green-100px-square flex-basis - auto http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis 2d1b30c5b772e87ba0ccb74ab319a3fe20cb2c06 `http://www.intel.com`<Intel>,`mailto:shiyoux.tan@intel.com`<Intel> The 'flex-basis' property set 'auto', the actual width of tested element same as the value which specified by width property.
flex-basis-008 reference/ref-filled-green-100px-square flex-basis - 50% http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis 09979a1d088a61b54658fb8c6c0cf2c5f8fcf23a `http://www.intel.com`<Intel>,`mailto:shiyoux.tan@intel.com`<Intel> The 'flex-basis' property set positive percentage, the actual width of tested element same as the percentage of flex container size.
flex-box-wrap reference/flex-box-wrap-ref flex-wrap: wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap ba16e0ce6a4689d877a4284a57fbac1936064914 `Tsuyoshi Tokuda`<mailto:tokuda109@gmail.com> the test passes if you see green box.
flex-container-margin reference/flex-container-margin-ref flex-container-margin-not-collapse-with-content-margin https://drafts.csswg.org/css-flexbox-1/#item-margins 5dd8264f765e903c8bd0ef01329e8085ba8eece6 `houzhenyu`<http://www.github.com/sskyy> The margins of adjacent flex items do not collapse.
flex-direction reference/flex-direction flex flow direction http://www.w3.org/TR/css-flexbox-1/#flex-direction b6d66deda60311140ce500883d0aa227cf715845 `houzhenyu`<http://www.github.com/sskyy> The flow of flex items in the the flex container should observe the flex-direction property.
flex-direction-column-reverse flex-direction: column-reverse swaps main start and end directions http://www.w3.org/TR/css-flexbox-1/#flex-direction 9d5fd17c3460baabfe4a2d7b360d140485c10d5d `Sylvain Galineau`<mailto:galineau@adobe.com> This test checks that column-reverse flex-direction swaps the main start and main end directions
flex-direction-modify reference/flex-direction-modify flex flow direction http://www.w3.org/TR/css-flexbox-1/#flex-direction 76b26a3c0de9ba0e914dca0a20b57bb21af09225 `houzhenyu`<http://www.github.com/sskyy> Changing 'flex-direction' with JavaScript and then changing it back should returns to the original look.
flex-direction-row flex-direction:row axis matches that of writing mode inline axis http://www.w3.org/TR/css-flexbox-1/#flex-direction 802cd247ee06b59e135b29300d78a263d2537e76 `Sylvain Galineau`<mailto:galineau@adobe.com> This test checks that the main axis of the row flex-direction has the same orientation as the inline axis of the current writing mode
flex-direction-row-reverse flow-direction:row-reverse swaps main start and end directions http://www.w3.org/TR/css-flexbox-1/#flex-direction c59a590dea7730a209a03e9c586318f6e9ee2476 `Sylvain Galineau`<mailto:galineau@adobe.com> This test checks that row-reverse flex-direction swaps the main start and main end directions
flex-direction-row-vertical flex-direction:row has the same orientation as inline axis http://www.w3.org/TR/css-flexbox-1/#flex-direction 81b714b5a7f513ab073b8eddd54ee96b706cb21e `Sylvain Galineau`<mailto:galineau@adobe.com> This test checks that the main axis of the row flex-direction has the same orientation as the inline axis of the current vertical writing mode
flex-direction-with-element-insert reference/flex-direction-with-element-insert flex flow direction http://www.w3.org/TR/css-flexbox-1/#flex-direction 0cba6df06c02153f2f797337f3ef00e6cc41a68a `houzhenyu`<http://www.github.com/sskyy> The flex items inserted by script shuould follow the right direction what the flex-direction property directives.
flex-direction_column flex-direction_column http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 7f33fa6c8e9ea0b8dcc0fce9496dfe38f5618075 `Intel`<http://www.intel.com> Check if the web engine can identify the flex-direction value column.
flex-direction_column-reverse flex-direction_column-reverse http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 55f6687b5bde10c153aecc6bc0dd22aa4ce6faa0 `Intel`<http://www.intel.com> Check if the web engine can identify the flex-direction value column-reverse.
flex-direction_row flex-direction_row http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 40deb85110b35e34e5baea6dd553dcfd5fc82693 `Intel`<http://www.intel.com> Check if the web engine can identify the flex-direction value row.
flex-direction_row-reverse flex-direction_row-reverse http://www.w3.org/TR/css-flexbox-1/#flex-direction-property b9acf4ed1ac103f4c0921774e32341cf812e5714 `Intel`<http://www.intel.com> Check if the web engine can identify the flex-direction value row-reverse.
flex-flexitem-childmargin reference/flex-flexitem-childmargin-ref flex item child margin http://www.w3.org/TR/css-flexbox-1/#flex-items 6a2c704280af71846826d92681075e8c7b763756 `shaofeic`<csf178@gmail.com> margin should effect the orange box and green box need to align to bottom.
flex-flexitem-percentage-prescation reference/flex-flexitem-percentage-prescation-ref flex item size prescation http://www.w3.org/TR/css-flexbox-1/#flex-items 760ccc17ef225d1b5cf2475f280a5de2ea83597d `shaofeic`<csf178@gmail.com> no blue color could be seen.
flex-flow-001 reference/flex-flow-001-ref flex-flow - row nowrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 2b6fb9a06aaa67cd288e4250a76bbc9aaea44a14 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'row nowrap' controls the flex container is single-line
flex-flow-002 reference/flex-flow-002-ref flex-flow - row wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 20995419ed10209f06aac780744ad9080e6cc280 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'row wrap' controls the flex container is multi-line
flex-flow-003 reference/flex-flow-002-ref flex-flow - row wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 28dc1f2443f81ac364e9fa6fc3975eee67e90248 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'row wrap-reverse' controls the flex container is multi-line but the cross-start and cross-end directions are swapped
flex-flow-004 reference/flex-flow-001-ref flex-flow - row-reverse nowrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 841563df07fa312a8513b87fd21ea186d155ab15 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'row-reverse nowrap' controls the flex container is single-line, but the main-start and main-end directions are swapped
flex-flow-005 reference/flex-flow-002-ref flex-flow - row-reverse wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 4d62ca810bd141c8f8568a8b87f4abca72e91b64 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'row-reverse wrap' controls the flex container is multi-line but the main-start and main-end directions are swapped
flex-flow-006 reference/flex-flow-002-ref flex-flow - row-reverse wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 18901fea023e63a3d2c392ee1228bdb2c7450eba `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'row-reverse wrap-reverse' controls the flex container is multi-line but the main-start and main-end, cross-start and cross-end directions are all swapped
flex-flow-007 reference/flex-flow-007-ref flex-flow - column nowrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 210de5669935d7d2eb233816c35d961fdbeb312d `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'column nowrap' controls the flex container is single-line, but the main axis is vertical
flex-flow-008 reference/flex-flow-002-ref flex-flow - column wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 4f72f2b5ce9e3a564b4ca21b82abf55c0393b53d `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'column wrap' controls the flex container is multi-line but the main axis is vertical
flex-flow-009 reference/flex-flow-002-ref flex-flow - column wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap efa73e03b1777605042c8f7ac0fcf0f91dcaf104 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'column wrap-reverse' controls the flex container is multi-line but the main axis is vertical, the cross-start and cross-end directions are swapped
flex-flow-010 reference/flex-flow-007-ref flex-flow - column-reverse nowrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 5ce59dfa07c69d38283f958cb84fec271fce21cb `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'column-reverse nowrap' controls the flex container is single-line, but the main axis is vertical, the main-start and main-end directions are swapped
flex-flow-011 reference/flex-flow-002-ref flex-flow - column-reverse wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 2df8167172baff0b9d747917475f28c10145c5e8 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'column-reverse wrap' controls the flex container is multi-line but the main axis is vertical, the main-start and main-end directions are swapped
flex-flow-012 reference/flex-flow-002-ref flex-flow - column-reverse wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap bee56e0f042416cfb033fbe30ab336569cb5551f `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-flow' property set 'column-reverse wrap-reverse' controls the flex container is multi-line but the main axis is vertical, the 'cross-start/cross-end' and 'main-start/main-end' directions are all swapped
flex-grow-001 reference/flex-grow-001-ref Flex-grow Property of Block-level Flex Items http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow 2ca54717986f10fb3ccc0d2d297e12a90224f361 `Hanrui Gao`<mailto:hanrui.gao@gmail.com> 'flex-grow' property specifies the flex grow factor, which determines how much the flex item will grow relative to the rest of the flex items in the flex container when positive free space is distributed.
flex-grow-002 reference/ref-filled-green-100px-square flex-grow - 0(initial value) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow d310ed55b1dbc33ad0980e9dbe212f514c5604ee `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-grow' property initial value is '0', the flex item will keep the width when 'flex-grow' set '0'
flex-grow-003 reference/ref-filled-green-100px-square flex-grow - negative number http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow 4d6302e03c8d6d92046c42ad93db3c64db9d7ff3 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-grow' property set negative number, the flex item will not grow.
flex-grow-004 reference/ref-filled-green-100px-square flex-grow - (invalid when no space distributed) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow 8e5211f94c12ebe0f7e248721b724d32dda4ce1e `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-grow' property is invalid when the flex container has no space distributed.
flex-grow-005 reference/ref-filled-green-100px-square flex-grow - (invalid when applied to flex container) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow 5786ab49011d6f7284919bd24df40f082c55e64d `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The 'flex-grow' property is invalid when the property applied to flex container.
flex-grow-006 reference/ref-filled-green-100px-square flex-grow - positive number(fill all space) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow f8b3290012a57cf47c520f716c3c50a4e02eba55 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> Test checks that all space of flex container will be filled when there is only one flex item and 'flex-grow' set any positive number.
flex-items-flexibility reference/flex-items-flexibility CSS Flex-basis Test http://www.w3.org/TR/css-flexbox-1/#flexibility ae727206300ecb1f3e5b155a9288be0be61f52b2 `Chunsheng Zhang`<mailto:zhangcs_423@163.com> flex items flexibility
flex-margin-no-collapse reference/flex-margin-no-collapse-ref flex item margins http://www.w3.org/TR/css-flexbox-1/#propdef-flex-direction,http://www.w3.org/TR/css-flexbox-1/#item-margins 96231d68de1fe051b06e793d659a813a53a91ed9 `Ping Huang`<mailto:phuangce@gmail.com> The vertical gap between two green boxs should be 100px.
flex-minimum-height-flex-items-001 reference/ref-filled-green-100px-square Minimum height of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto f895c2907ea97510c9bda238e3cb254560992e74 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum height for flex items is the min-content size.
flex-minimum-height-flex-items-002 reference/ref-filled-green-100px-square Minimum height of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto e7bfb430a2b269d513ca83a606ed8896cc9f3cbe `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum height for flex items is the specified size if it's smaller than the min-content size.
flex-minimum-height-flex-items-003 reference/ref-filled-green-100px-square Minimum height of flex items ahem http://www.w3.org/TR/css-flexbox-1/#min-size-auto 34f40959e7855b181dacaa5e4337101584b6584a `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum height for flex items is the min-content size if it's smaller than the specified size.
flex-minimum-height-flex-items-004 reference/ref-filled-green-100px-square Minimum height of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto 3024554ced628148beaa2f00e8548fc024c4efe4 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum height for flex items is the min-content size (which corresponds to the image size).
flex-minimum-height-flex-items-005 reference/ref-filled-green-100px-square Minimum height of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto 2988aa51e6c99d3425eb48dc4e9b52a0853646ff `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum height for flex items is the specified size, as the min-content size of the image corresponds to that.
flex-minimum-height-flex-items-006 reference/ref-filled-green-100px-square Minimum height of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto 6e81c0b3101624f8934ad0bcba83bbb00578ec54 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum height for flex items is the specified size, as the min-content size of the image corresponds to that.
flex-minimum-height-flex-items-007 reference/ref-filled-green-100px-square Minimum height of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto 630f6230313482686e30106445e41bef8dd8a966 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum height for flex items is the transferred size, as the min-content size of the image corresponds to that.
flex-minimum-height-flex-items-008 reference/ref-filled-green-100px-square Minimum height of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto 83530abaf9425f3634ce0fb07fa4af25e8aeff5f `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum height for flex items is the transferred size, as the min-content size of the image corresponds to that.
flex-minimum-width-flex-items-001 reference/ref-filled-green-100px-square Minimum width of flex items ahem http://www.w3.org/TR/css-flexbox-1/#min-size-auto 586c907f4754de786cb10d0e05cdf4402e96816a `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum width for flex items is the min-content size.
flex-minimum-width-flex-items-002 reference/ref-filled-green-100px-square Minimum width of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto 7d07bd73b5c169ab7f0b995ff98da207f1ae9b37 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum width for flex items is the specified size if it's smaller than the min-content size.
flex-minimum-width-flex-items-003 reference/ref-filled-green-100px-square Minimum width of flex items ahem http://www.w3.org/TR/css-flexbox-1/#min-size-auto c4fbdf201aa741142a490c654bfd7098916a9769 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum width for flex items is the min-content size if it's smaller than the specified size.
flex-minimum-width-flex-items-004 reference/ref-filled-green-100px-square Minimum width of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto d3ada50da1f18af7821e6e62dc8f4351658e69c0 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum width for flex items is the min-content size (which corresponds to the image size).
flex-minimum-width-flex-items-005 reference/ref-filled-green-100px-square Minimum width of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto dc01581c245bb22afc1933900563dcdb6a287d13 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum width for flex items is the specified size, as the min-content size of the image corresponds to that.
flex-minimum-width-flex-items-006 reference/ref-filled-green-100px-square Minimum width of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto 0ac2d45e03442e2a95021f576381a0dee17ffdd7 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum width for flex items is the specified size, as the min-content size of the image corresponds to that.
flex-minimum-width-flex-items-007 reference/ref-filled-green-100px-square Minimum width of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto e6534fb80a1d6b89c6d94d3200a89d6e2ecad932 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum width for flex items is the transferred size, as the min-content size of the image corresponds to that.
flex-minimum-width-flex-items-008 reference/ref-filled-green-100px-square Minimum width of flex items http://www.w3.org/TR/css-flexbox-1/#min-size-auto 898af6635da79f266c65974eebd1fb0bfddb3d72 `Manuel Rego Casasnovas`<mailto:rego@igalia.com> Checks that minimum width for flex items is the transferred size, as the min-content size of the image corresponds to that.
flex-order reference/flex-order-ref flex order http://www.w3.org/TR/css-flexbox-1/#order-property 9e6a2aa1915fdf7450eba77f1d5499884b800ea6 `Mitsuteru Sawa`<mailto:mitsuteru.s@gmail.com> ordered flex items should ordered properly
flex-shrink-001 reference/ref-filled-green-100px-square flex-shrink - number(positive) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink f27d600fc7863c3d4c3fc3b4e4bc8cc7f58cdbae `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The flex-shrink property set positive number determines how much the flex item will shrink relative to the rest of the flex items in the flex container when negative free space is distributed
flex-shrink-002 reference/ref-filled-green-100px-square flex-shrink - number(negative) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink 49884ece59d09eb5cd9a4d9228d62478cdaf3179 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The flex-shrink property set negative is invalid to shrink flex items when negative free space is distributed
flex-shrink-003 reference/ref-filled-green-100px-square flex-shrink - 1(initial value) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink 818d6673cf983ffed848bf72d5935cff3fe6bfa1 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The flex-shrink property initial value is 1
flex-shrink-004 reference/ref-filled-green-100px-square flex-shrink - number(flex container has enough space) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink 5d2e7839f495f199f57b1c0cc0e09044520297b0 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The flex-shrink property is invalid when flex container has enough space to load flex items
flex-shrink-005 reference/ref-filled-green-100px-square flex-shrink - 0 http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink 66bb12e5559ff4386401017fb427288bfc1f5e78 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The flex-shrink property set 0 will ignore the flex container
flex-shrink-006 reference/ref-filled-green-100px-square flex-shrink - 0(one of flex-shrinks sets 0, another not) http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink c23e625054a996ab5cb7d1d266fa20c1373fb428 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The flex item whose flex-shrink property of set 0 will displayed on the top of all flex items
flex-shrink-007 reference/ref-filled-green-100px-square flex-shrink - applied to flex container http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink 9a2164f7f24794bbaad241af2643c60162c045b2 `Intel`<http://www.intel.com>,`Shiyou Tan`<mailto:shiyoux.tan@intel.com> The flex-shrink property applied to flex container is invalid, all flex items will use the default value 1
flex-vertical-align-effect reference/flex-vertical-align-effect 'display' property set to 'flex' http://www.w3.org/TR/css-flexbox-1/#flex-property eac71db3e7e1dd242d560f86d2695a90cfeb930d `Hua Zhao`<mailto:zhaohua.design@163.com> vertical-align property has no effect
flex-wrap-001 A flex container with 'flex-flow' set to 'wrap' http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap c5cacdf99fd5cf6be2fd750358b6379f871a38e5 `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'flex-flow: wrap' is a multi-line flex container.
flex-wrap_nowrap flex-wrap_nowrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 5ec5f8c4dafa27fffef9428e2ff71abce8435ca9 `Intel`<http://www.intel.com> Check if the web engine can identify the flex-wrap value nowrap.
flex-wrap_wrap flex-wrap_wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 818c98e2535af512ae6d24cd6b87216258f679d2 `Intel`<http://www.intel.com> Check if the display can recognize inline-flex value.
flex-wrap_wrap-reverse flex-wrap_wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 5e9b027925dfa2db5208aac448106b46a4ef019b `Intel`<http://www.intel.com> Check if the web engine can identify the flex-wrap value wrap-reverse.
flexbox-abspos-child-001a reference/flexbox-abspos-child-001-ref Testing that "min-width", "max-width", "min-height", and "max-height" are applied on absolutely positioned children of a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#abspos-items 26d0f34eed0c45d01d0264cc9b9c4f84a8805643 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-abspos-child-001b reference/flexbox-abspos-child-001-ref Testing that "min-width", "max-width", "min-height", and "max-height" are applied on absolutely positioned children of a vertical flex container http://www.w3.org/TR/css-flexbox-1/#abspos-items 5a02c14579eb4f61bb921a2422bf239453542e91 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-content-horiz-001a reference/flexbox-align-content-horiz-001-ref Testing 'align-content' in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#align-content-property e3a49caf48912d5799ccd3f435bcdb24c5e9e9c2 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-content-horiz-001b reference/flexbox-align-content-horiz-001-ref Testing 'align-content' in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#align-content-property 067772e2465336c95f5c71b6a1eaf2024971e721 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-content-vert-001a reference/flexbox-align-content-vert-001-ref Testing 'align-content' in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#align-content-property 9240ccde2b7d5e237308032e40488023fbcdd9d1 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-content-vert-001b reference/flexbox-align-content-vert-001-ref Testing 'align-content' in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#align-content-property e36c247019bcdfe491f9995e9a5c47dd5f008242 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-baseline-horiz-001a reference/flexbox-align-self-baseline-horiz-001-ref Baseline alignment of block flex items with 'baseline' value for 'align-items' / 'align-self' http://www.w3.org/TR/css-flexbox-1/#baseline-participation fabc16fabb851108f082dfb7cf42b497666e3447 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-baseline-horiz-001b reference/flexbox-align-self-baseline-horiz-001-ref Baseline alignment of block flex items with 'baseline' value for 'align-items' / 'align-self' in a wrap-reverse flex container http://www.w3.org/TR/css-flexbox-1/#baseline-participation 675397922dd82ff7b3372977662aaba0d9c91943 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-baseline-horiz-002 reference/flexbox-align-self-baseline-horiz-002-ref Baseline alignment of flex items in fixed-size single-line flex container http://www.w3.org/TR/css-flexbox-1/#baseline-participation 8b040717c0aa1788f98a5ed0095399b1f8ac64fc `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-baseline-horiz-003 reference/flexbox-align-self-baseline-horiz-003-ref Baseline alignment of flex items in fixed-size single-line flex container, with cross axis reversed http://www.w3.org/TR/css-flexbox-1/#baseline-participation 218fc9c38f93ce1e661f9d95e2cacccf8f9dfa7b `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-baseline-horiz-004 reference/flexbox-align-self-baseline-horiz-004-ref Baseline alignment of block flex items with 'baseline' value for 'align-items' / 'align-self' in a multi-line flex container http://www.w3.org/TR/css-flexbox-1/#baseline-participation e0299d04b12aad85d3d0a583c3b0d27e7b9f990a `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-baseline-horiz-005 reference/flexbox-align-self-baseline-horiz-005-ref Baseline alignment of block flex items with 'baseline' value for 'align-items' / 'align-self' in a multi-line flex container http://www.w3.org/TR/css-flexbox-1/#baseline-participation 87aa705213832e513475800e2a74f844e80a0da2 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-horiz-001-block reference/flexbox-align-self-horiz-001-ref Testing the behavior of 'align-self' property values on flex items that are blocks, in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#align-items-property 8ddd9e5c643399d31bc48e8a39684d98ce7f2406 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-horiz-001-table reference/flexbox-align-self-horiz-001-ref Testing the various 'align-self' property values on flex items that are tables http://www.w3.org/TR/css-flexbox-1/#align-items-property 183f460c2e72e0bcf57e9fc6ce6e2225f9115212 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-horiz-002 reference/flexbox-align-self-horiz-002-ref Testing the behavior of 'align-self' with a horizontal flex container, with margin/padding/border on the items http://www.w3.org/TR/css-flexbox-1/#align-items-property 8ab4c5c5d3600422c2560908ea8c809511fd8456 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-horiz-003 reference/flexbox-align-self-horiz-003-ref Testing the behavior of 'align-self' with a horizontal flex container that's shorter than its items http://www.w3.org/TR/css-flexbox-1/#align-items-property 93f5ee5346f64dfaf676ad9c9830d8821a984bec `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-horiz-004 reference/flexbox-align-self-horiz-004-ref Testing the behavior of 'align-self' with a horizontal flex container that's shorter than its items, with margin/padding/border on the items http://www.w3.org/TR/css-flexbox-1/#align-items-property 10a87f5352d8eb2c448129d27aa505f3148d4534 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-horiz-005 reference/flexbox-align-self-horiz-005-ref Testing the behavior of 'align-self' with auto margins in play, in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#auto-margins 47ddfa8eb08586be92297f63fb61d0b9e8899e29 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-stretch-vert-001 reference/flexbox-align-self-stretch-vert-001-ref Testing the sizing of a stretched horizontal flex container in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 6c777130631b607e0e1106a0bd655645cfb049e3 `Daniel Holbert`<mailto:dholbert@mozilla.com> If a stretched flex item's main size is influenced by its cross size, and the flex container has a definite cross size, then the item's cross size should be resolved early so that it can be used when determining the item's main size https://drafts.csswg.org/css-flexbox/issues-cr-2012#issue-23
flexbox-align-self-stretch-vert-002 reference/flexbox-align-self-stretch-vert-002-ref Testing the sizing of stretched flex items in a vertical multi-line flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 840566b89d122841be2e884ea8221ac398d42806 `Daniel Holbert`<mailto:dholbert@mozilla.com> In a multi-line flex container, flex items should not be stretched (in the cross axis) until after wrapping has been performed.
flexbox-align-self-vert-001 reference/flexbox-align-self-vert-001-ref Testing the behavior of 'align-self' property values on flex items that are blocks, in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#align-items-property 4e00d307563cb8aa340346dcfe8b5739041b89d4 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-vert-002 reference/flexbox-align-self-vert-002-ref Testing the behavior of 'align-self' with a vertical flex container, with margin/padding/border on the items http://www.w3.org/TR/css-flexbox-1/#align-items-property e4ec24ac64ed22adb3900510ba0aee2079ed087e `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-vert-003 reference/flexbox-align-self-vert-003-ref Testing the behavior of 'align-self' with a vertical flex container that's skinnier than its items http://www.w3.org/TR/css-flexbox-1/#align-items-property e1068a4a199f105864fbbe609c885c8989f73bff `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-vert-004 reference/flexbox-align-self-vert-004-ref Testing the behavior of 'align-self' with a vertical flex container that's skinnier than its items, with margin/padding/border on the items http://www.w3.org/TR/css-flexbox-1/#align-items-property bbeaab1c6c159de1a6df40c73b78ed8ca049dde6 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-vert-rtl-001 reference/flexbox-align-self-vert-rtl-001-ref Testing the behavior of 'align-self' property values on flex items that are blocks, in a vertical flex container with 'direction: rtl' http://www.w3.org/TR/css-flexbox-1/#align-items-property bc2cddd8f92054fdb8ef0c60ec4dfb92b85a1e9f `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-vert-rtl-002 reference/flexbox-align-self-vert-rtl-002-ref Testing the behavior of 'align-self' with a vertical flex container, with margin/padding/border on the items and with 'direction: rtl' http://www.w3.org/TR/css-flexbox-1/#align-items-property efb57e456adb51958e2fe0f94616d6a0c81e0a83 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-vert-rtl-003 reference/flexbox-align-self-vert-rtl-003-ref Testing the behavior of 'align-self' with a vertical flex container that's skinnier than its items and with 'direction: rtl' http://www.w3.org/TR/css-flexbox-1/#align-items-property 31a2a8ea620c80f95c34ac55b33538ae675a59d6 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-align-self-vert-rtl-004 reference/flexbox-align-self-vert-rtl-004-ref Testing the behavior of 'align-self' with a vertical flex container that's skinnier than its items, with margin/padding/border on the items and with 'direction: rtl' http://www.w3.org/TR/css-flexbox-1/#align-items-property 3d3ab6a958cf8699ca899e4502dccde60bb4101d `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-anonymous-items-001 reference/flexbox-anonymous-items-001-ref Testing that we gracefully handle cases where two anonymous flex items become adjacent due to "order" reordering http://www.w3.org/TR/css-flexbox-1/#flex-items 52184e10e8769e13e8e22317cfc27568b6be5bf3 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-align-self-baseline-horiz-001 reference/flexbox-baseline-align-self-baseline-horiz-001-ref Testing the baseline of a horizontal flex container with baseline-aligned flex items http://www.w3.org/TR/css-flexbox-1/#flex-baselines b1ec3f485c09884b34a4428cd9e2c61ba0d6d566 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-align-self-baseline-vert-001 reference/flexbox-baseline-align-self-baseline-vert-001-ref Testing the baseline of a vertical flex container with baseline-aligned flex items http://www.w3.org/TR/css-flexbox-1/#flex-baselines 0c08d77d4fdeeb6376fde7274059d9eb0b774b85 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-empty-001a reference/flexbox-baseline-empty-001-ref Testing the baseline of an empty horizontal flex container http://www.w3.org/TR/css-flexbox-1/#flex-baselines 8c0729a3905f9147062c16d2ff05434be1927f1f `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-empty-001b reference/flexbox-baseline-empty-001-ref Testing the baseline of an empty vertical flex container http://www.w3.org/TR/css-flexbox-1/#flex-baselines 347722d0a1056868babe94ffd6d3e64c5a1387ec `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-multi-item-horiz-001 reference/flexbox-baseline-multi-item-horiz-001-ref Testing the baseline of a horizontal flex container whose flex items are not baseline-aligned http://www.w3.org/TR/css-flexbox-1/#flex-baselines a283f1e214227518363634bca2679006df8923f8 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-multi-item-vert-001 reference/flexbox-baseline-multi-item-vert-001-ref Testing the baseline of a vertical flex container whose flex items are not baseline-aligned http://www.w3.org/TR/css-flexbox-1/#flex-baselines 8cab7e76d6ecf1d954444cf2947f7b7f5b4bd139 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-multi-line-horiz-001 reference/flexbox-baseline-multi-line-horiz-001-ref Testing the baseline of a horizontal flex container with multiple flex lines http://www.w3.org/TR/css-flexbox-1/#flex-baselines 5b40cbd240a4fe9a6b527bfe21d87ab531d22c25 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-multi-line-horiz-002 reference/flexbox-baseline-multi-line-horiz-002-ref Testing the baseline of a horizontal flex container with multiple flex lines http://www.w3.org/TR/css-flexbox-1/#flex-baselines a2b8257dcb1e7295ca3ec970786e99f059ea5c5c `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-multi-line-horiz-003 reference/flexbox-baseline-multi-line-horiz-003-ref Testing the baseline of a horizontal multi-line (wrap) flex container with baseline-aligned items on first line http://www.w3.org/TR/css-flexbox-1/#flex-baselines 871c3ce6edc7ffa644ebb0ce2600e8eae260f629 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-multi-line-horiz-004 reference/flexbox-baseline-multi-line-horiz-004-ref Testing the baseline of a horizontal multi-line (wrap-reverse) flex container with baseline-aligned items on first line http://www.w3.org/TR/css-flexbox-1/#flex-baselines 3ac46dde16f6bd3200879bc8fa7c657ce5bfc094 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-multi-line-vert-001 reference/flexbox-baseline-multi-line-vert-001-ref Testing the baseline of a vertical flex container with multiple flex lines http://www.w3.org/TR/css-flexbox-1/#flex-baselines f78a8e482f175d284d6e6f229eb73aadd93b160c `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-multi-line-vert-002 reference/flexbox-baseline-multi-line-vert-002-ref Testing the baseline of a vertical flex container with multiple flex lines http://www.w3.org/TR/css-flexbox-1/#flex-baselines 86134be0477c7abc57dbd95b223a49661460c225 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-single-item-001a reference/flexbox-baseline-single-item-001-ref Testing the baseline of a horizontal flex container with one flex item http://www.w3.org/TR/css-flexbox-1/#flex-baselines 521c1fb2d5f212dd8f3866a712e7da1648a7d675 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-baseline-single-item-001b reference/flexbox-baseline-single-item-001-ref Testing the baseline of a vertical flex container with one flex item http://www.w3.org/TR/css-flexbox-1/#flex-baselines 6610787967ced8297117e38f57d7a60a9b4dc5f5 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-block-horiz-001 reference/flexbox-basic-block-horiz-001-ref Testing flexbox layout algorithm property on block flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm b734e5c504d50dd58b448d99a977a0816a2bc4a7 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-block-vert-001 reference/flexbox-basic-block-vert-001-ref Testing flexbox layout algorithm property on block flex items in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 56d4d7b765cbfa53e5b903999ffebccc8497f960 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-canvas-horiz-001 reference/flexbox-basic-canvas-horiz-001-ref Testing flexbox layout algorithm property on canvas flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 4b4ec70409a9c3bc289653f2b0267780dc6d389d `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-canvas-vert-001 reference/flexbox-basic-canvas-vert-001-ref Testing flexbox layout algorithm property on canvas flex items in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm c898a37e757a542bbe69c014318c5fdfd3a3f0ca `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-fieldset-horiz-001 reference/flexbox-basic-fieldset-horiz-001-ref Testing flexbox layout algorithm property on fieldset flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm dfda3faf4b53bbf5bbdb9a7663a10edab1fcd47c `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-fieldset-vert-001 reference/flexbox-basic-fieldset-vert-001-ref Testing flexbox layout algorithm property on fieldset flex items in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 7368c1777a6ac0db1368e3eebecfd9d1268de57d `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-iframe-horiz-001 reference/flexbox-basic-iframe-horiz-001-ref Testing flexbox layout algorithm property on iframe flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm bc37f1da5d1b11f8b96a5b13fd8a9800fe678732 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-iframe-vert-001 reference/flexbox-basic-iframe-vert-001-ref Testing flexbox layout algorithm property on iframe flex items in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm a0f1958a683f150246fe4b8d943ed99faa92f506 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-img-horiz-001 reference/flexbox-basic-img-horiz-001-ref Testing flexbox layout algorithm property on img flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm f458bf0b4de3a16ec2691ca5dd7e81a267c123aa `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-img-vert-001 reference/flexbox-basic-img-vert-001-ref Testing flexbox layout algorithm property on img flex items in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 125a32aa462d4727c81109b4e3e15120bbaedba6 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-textarea-horiz-001 reference/flexbox-basic-textarea-horiz-001-ref Testing flexbox layout algorithm property on textarea flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 76e81cfa0324e78f62eddd19dfaf60dc9cb29701 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-textarea-vert-001 reference/flexbox-basic-textarea-vert-001-ref Testing flexbox layout algorithm property on textarea flex items in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 5cc3168e6c0a2df12f14e9167eb748460cc49e93 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-video-horiz-001 reference/flexbox-basic-video-horiz-001-ref Testing flexbox layout algorithm property on video flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 8b3ab455f84b2a833309454ea85bdabfb816f2d8 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-basic-video-vert-001 reference/flexbox-basic-video-vert-001-ref Testing flexbox layout algorithm property on video flex items in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 499fb79b81a9e52c0931e6886d33f48f0a7705b3 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-break-request-horiz-001a reference/flexbox-break-request-horiz-001-ref Testing page-break-before in horizontal multi-line flex containers http://www.w3.org/TR/css-flexbox-1/#algo-line-break 013d1e82098a46499622f1974e92fb3a54bb57b2 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-break-request-horiz-001b reference/flexbox-break-request-horiz-001-ref Testing page-break-after in horizontal multi-line flex containers http://www.w3.org/TR/css-flexbox-1/#algo-line-break 5e4a4a487ef12451202fd7f462ffc46849093122 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-break-request-horiz-002a reference/flexbox-break-request-horiz-002-ref Testing page-break-before in horizontal single-line flex containers (should have no effect) http://www.w3.org/TR/css-flexbox-1/#algo-line-break 90e2c978fb46935225a8b9e3a8f97c3ed32c911f `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-break-request-horiz-002b reference/flexbox-break-request-horiz-002-ref Testing page-break-after in horizontal single-line flex containers (should have no effect) http://www.w3.org/TR/css-flexbox-1/#algo-line-break 24a5d9f01282007ccfc06072996356c5ad97f966 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-break-request-vert-001a reference/flexbox-break-request-vert-001-ref Testing page-break-before in vertical multi-line flex containers http://www.w3.org/TR/css-flexbox-1/#algo-line-break 69ec9223d47f3de4f36d9260f3b3b57713e3c735 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-break-request-vert-001b reference/flexbox-break-request-vert-001-ref Testing page-break-after in vertical multi-line flex containers http://www.w3.org/TR/css-flexbox-1/#algo-line-break 3117241954c2de6105fcf6dec704d52652b7a356 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-break-request-vert-002a reference/flexbox-break-request-vert-002-ref Testing page-break-before in vertical single-line flex containers (should have no effect) http://www.w3.org/TR/css-flexbox-1/#algo-line-break 1a1155fb3dcdd2b363a0b15e6aae05b0e437ef6d `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-break-request-vert-002b reference/flexbox-break-request-vert-002-ref Testing page-break-after in vertical single-line flex containers (should have no effect) http://www.w3.org/TR/css-flexbox-1/#algo-line-break a6c73e4856caa8fe71fe7f101f73a353bfe46a08 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-collapsed-item-baseline-001 reference/flexbox-collapsed-item-baseline-001-ref Testing that a collapsed flex item participates in baseline alignment only for the purpose of establishing container's cross size http://www.w3.org/TR/css-flexbox-1/#algo-visibility 6e83763db45d8aeb4dc7746fc1cf89fa71a1f8f4 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-collapsed-item-horiz-001 reference/flexbox-collapsed-item-horiz-001-ref Testing that visibility:collapse on a flex item in a single-line flex container maintains the containers's cross size, but doesn't otherwise impact flex layout http://www.w3.org/TR/css-flexbox-1/#algo-visibility 377d25a9e3944c9c4bbc423f9ca66fd3b32f89eb `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-collapsed-item-horiz-002 reference/flexbox-collapsed-item-horiz-002-ref Testing that visibility:collapse on a flex item in a multi-line flex container creates struts, and that they can migrate between lines http://www.w3.org/TR/css-flexbox-1/#algo-visibility d0b0b60df8f31bb4a4607d1c225fc92ed8d7593c `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-collapsed-item-horiz-003 reference/flexbox-collapsed-item-horiz-003-ref Testing that strut formation (from visibility:collapse) happens *after* lines have been stretched http://www.w3.org/TR/css-flexbox-1/#algo-visibility c2d0bd027aaf19b74f8a4494eb8051ee8aa9d6d5 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-flex-direction-column reference/flexbox-flex-direction-ref Flex-direction = column http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 39829e61d50e5f89cc7786172e1f6220a20de0a0 `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex container's main axis has the same orientation as the block axis of the current writing mode, when flex-direction = column. This assumes writing-direction = horizontal-tb', and direction = 'ltr'.
flexbox-flex-direction-column-reverse reference/flexbox-flex-direction-ref Flex-direction = column-reverse http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 1cdd39e73b8089fc47f7ff3d2b4462d7f4a0f959 `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex container's main axis has the same orientation as the block axis of the current writing mode, and main-start and main-end are swapped, when flex-direction = column-reverse. This assumes writing-direction = horizontal-tb', and direction = 'ltr'.
flexbox-flex-direction-default reference/flexbox-flex-direction-ref Flex-direction = row by default http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 87e7b9e8ea33521891ecd6fb513b525112f1767a `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex container's main axis has the same orientation as the inline axis of the current writing mode by default. This assumes writing-direction = horizontal-tb', and direction = 'ltr'.
flexbox-flex-direction-row reference/flexbox-flex-direction-ref Flex-direction = row http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 042bdefd6bca02abc7e5ee451ba04432edeca0eb `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex container's main axis has the same orientation as the inline axis of the current writing mode, when flex-direction = row. This assumes writing-direction = horizontal-tb', and direction = 'ltr'.
flexbox-flex-direction-row-reverse reference/flexbox-flex-direction-ref Flex-direction = row-reverse http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 53fe7c622d2d2ae0b729e3dea42e551f93604e03 `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex container's main axis has the opposite orientation as the inline axis of the current writing mode, when flex-direction = row-reverse. This assumes writing-direction = horizontal-tb', and direction = 'ltr'.
flexbox-flex-flow-001 reference/flexbox-flex-flow-001-ref Testing all the values of the "flex-flow" shorthand property, with 4 flex items in each container http://www.w3.org/TR/css-flexbox-1/#flex-flow-property d478956e41720539d7faaf15c2de88446d97e88f `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-flex-flow-002 reference/flexbox-flex-flow-002-ref Testing all the values of the "flex-flow" shorthand property, with 3 flex items in each container http://www.w3.org/TR/css-flexbox-1/#flex-flow-property d30cd4ec9d23ab42ca3c45d25dfb2c22aaca8425 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-flex-wrap-default reference/flexbox-flex-wrap-nowrap-ref Flex-wrap defaults to nowrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 31bbef44f3745774a4f5d96fd25b42d802c816e1 `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex elements default to flex-wrap: nowrap if flex-wrap is not set. With wrapping disabled, the .green flex item should extend outside the bounds of its container, as it is set to flex:none.
flexbox-flex-wrap-flexing reference/flexbox-flex-wrap-flexing-ref flex-wrap flexes widths after line breaking http://www.w3.org/TR/css-flexbox-1/#flex-lines 08c6d912f2962f428e07d579290bc6e6f873933a `Alan Stearns`<mailto:stearns@adobe.com> Flex items given more space after line breaking should flex wider http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap http://www.w3.org/TR/css-flexbox-1/#flex-property
flexbox-flex-wrap-horiz-001 reference/flexbox-flex-wrap-horiz-001-ref Testing flex-wrap in horizontal flex containers http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property b2925a6887d09b4568cdcab594eee4ada3a4c2ed `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-flex-wrap-horiz-002 reference/flexbox-flex-wrap-horiz-002-ref Ensure that min-width is honored for horizontal multi-line flex containers http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property d670646328c5994319eda514b0f595926f215bb8 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-flex-wrap-nowrap reference/flexbox-flex-wrap-nowrap-ref Flex-wrap = nowrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 967df036ffeca0ff1e79440af8e849e85bdc9d73 `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex elements set to flex-wrap: nowrap will not wrap their flex items. With wrapping disabled, the .green flex item should extend outside the bounds of its container, as it is set to flex:none.
flexbox-flex-wrap-vert-001 reference/flexbox-flex-wrap-vert-001-ref Testing flex-wrap in vertical flex containers http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property a4d627e51950ce9e2e2d48ef7ffb06b92909333d `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-flex-wrap-vert-002 reference/flexbox-flex-wrap-vert-002-ref Ensure that min-height is honored for vertical multi-line flex containers http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property eaff6cec8d46802c9ab8cc0150cd2ad4eed9d238 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-flex-wrap-wrap reference/flexbox-flex-direction-ref Flex-wrap = wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap a981ce90ee729f0e17695a587b98bcc742bacaa9 `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex elements wrap left-to-right within their flex container when flex-wrap = 'wrap', matching the writing direction. This assumes writing-direction = horizontal-tb', and direction = 'ltr'.
flexbox-flex-wrap-wrap-reverse reference/flexbox-flex-direction-ref Flex-wrap = wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap cf0954a780bc7326c123e90c9c86f3ce3c9b51f0 `Gavin Elster`<mailto:gavin.elster@me.com> Test checks that flex elements wrap left-to-right and bottom-to-top within their flex container when flex-wrap = 'wrap-reverse'. This assumes writing-direction = horizontal-tb', and direction = 'ltr'.
flexbox-items-as-stacking-contexts-001 reference/flexbox-items-as-stacking-contexts-001-ref Testing that 'z-index' property makes flex items form stacking contexts http://www.w3.org/TR/css-flexbox-1/#painting 24a2f639c8eb38ec564295dfa45f740629d0b8b2 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-items-as-stacking-contexts-002 reference/flexbox-items-as-stacking-contexts-002-ref Testing that flex items paint as pseudo-stacking contexts (like inline-blocks): atomically, in the absence of 'z-index' on descendants http://www.w3.org/TR/css-flexbox-1/#painting c8ea90174cb46e7cad9e0f953fae1cc47e48d753 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-items-as-stacking-contexts-003 reference/flexbox-items-as-stacking-contexts-003-ref Testing that flex items paint as pseudo-stacking contexts (like inline-blocks), instead of full stacking contexts: 'z-index' should let descendants interleave http://www.w3.org/TR/css-flexbox-1/#painting ddab47de6e88e2d8862a119e837149fe6a70f396 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-horiz-001a reference/flexbox-justify-content-horiz-001-ref Testing 'justify-content' in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#justify-content-property 3e37d17c14565fa3411ab3727fd6215756f82f10 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-horiz-001b reference/flexbox-justify-content-horiz-001-ref Testing 'justify-content' in a horizontal flex container with "min-width" http://www.w3.org/TR/css-flexbox-1/#justify-content-property 3444fbce066b79d95403b1ead1400bfe0521088b `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-horiz-002 reference/flexbox-justify-content-horiz-002-ref Testing 'justify-content' in a horizontal flex container, with margins/border/padding on flex items http://www.w3.org/TR/css-flexbox-1/#justify-content-property 9d6b1d1ffb549b6e03a8eeb89aae62eaa4cfbf41 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-horiz-003 reference/flexbox-justify-content-horiz-003-ref Testing 'justify-content' in a horizontal flex container, and its effects on flex items that overflow http://www.w3.org/TR/css-flexbox-1/#justify-content-property 8cb3b2c128edf48df2fa64d0f2551636b69853f1 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-horiz-004 reference/flexbox-justify-content-horiz-004-ref Testing 'justify-content' in a horizontal flex container, and its effects on flex items that overflow, with margins/border/padding on flex items http://www.w3.org/TR/css-flexbox-1/#justify-content-property 1a8483bd2fc2896f00f5a037f2b31146c444a196 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-horiz-005 reference/flexbox-justify-content-horiz-005-ref Testing 'justify-content' in an auto-sized horizontal flex container http://www.w3.org/TR/css-flexbox-1/#justify-content-property ff0ebbcb9674b03a184e34b0eba56bef3eb21f39 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-vert-001a reference/flexbox-justify-content-vert-001-ref Testing 'justify-content' in a vertical flex container http://www.w3.org/TR/css-flexbox-1/#justify-content-property 7d81a4514f3595215307bfd53a94611ece9fd716 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-vert-001b reference/flexbox-justify-content-vert-001-ref Testing 'justify-content' in a vertical flex container with "min-height" http://www.w3.org/TR/css-flexbox-1/#justify-content-property 192c9550df0a596cf20bb6c2a5d70c825760652f `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-vert-002 reference/flexbox-justify-content-vert-002-ref Testing 'justify-content' in a vertical flex container, with margins/border/padding on flex items http://www.w3.org/TR/css-flexbox-1/#justify-content-property a392e91755b4e0bfe04230f6edb4d3ac0e015c94 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-vert-003 reference/flexbox-justify-content-vert-003-ref Testing 'justify-content' in a vertical flex container, and its effects on flex items that overflow http://www.w3.org/TR/css-flexbox-1/#justify-content-property f79f7b761b9534661cf9940bc8ea3e9759da61dc `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-vert-004 reference/flexbox-justify-content-vert-004-ref Testing 'justify-content' in a vertical flex container, and its effects on flex items that overflow, with margins/border/padding on flex items http://www.w3.org/TR/css-flexbox-1/#justify-content-property b3217e5b57a9e3280f61bfcffdce534af2070fda `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-justify-content-vert-005 reference/flexbox-justify-content-vert-005-ref Testing 'justify-content' in an auto-sized vertical flex container http://www.w3.org/TR/css-flexbox-1/#justify-content-property d45ecb633a90c0ec59d4cfcf6df95fec601a1814 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-margin-auto-horiz-001 reference/flexbox-margin-auto-horiz-001-ref Testing horizontal auto margins on flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#auto-margins 087c658eba6c0bdd9668859721b1026bea08dd07 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-margin-auto-horiz-002 reference/flexbox-margin-auto-horiz-002-ref Testing vertical auto margins on flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#auto-margins 34bb4a35da385cde61a74f48e978694e3ed4029f `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-001 reference/flexbox-mbp-horiz-001-ref Testing borders on flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 377fd628292f6099011fbc0b4dbe6d7bbbc00ccd `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-001-reverse reference/flexbox-mbp-horiz-001-reverse-ref Testing borders on flex items in a row-reverse horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 7abfb56c325498977c7d96c73b34ca6e57f4a3ea `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-001-rtl reference/flexbox-mbp-horiz-001-reverse-ref Testing borders on flex items in a horizontal flex container with 'direction: rtl' http://www.w3.org/TR/css-flexbox-1/#layout-algorithm aa18a5f0a0e32a8dff7078d1e3b9b1a04c310f65 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-001-rtl-reverse reference/flexbox-mbp-horiz-001-ref Testing borders on flex items in a row-reverse horizontal flex container, with 'direction: rtl' http://www.w3.org/TR/css-flexbox-1/#layout-algorithm d0f973c38f297ffaf2c63a740384a58ee4e89b7d `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-002a reference/flexbox-mbp-horiz-002-ref Testing margins and borders on flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 73a9d178f89076a317b9e4c58fdc6d588d006a01 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-002b reference/flexbox-mbp-horiz-002-ref Testing margins, borders, and padding on flex items in a horizontal flex container http://www.w3.org/TR/css-flexbox-1/#layout-algorithm d9e6d66d01597174a792812cb786736423994ff2 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-003 reference/flexbox-mbp-horiz-003-ref Testing borders and padding on a horizontal flex container and its flex items http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 3eea26cf5bbbf7af533f49fc034c519dbf8900b0 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-003-reverse reference/flexbox-mbp-horiz-003-reverse-ref Testing borders and padding on a row-reverse horizontal flex container and its flex items http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 7bee1226b5ecd1d8ab52846710838155ee11e5ee `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-mbp-horiz-004 reference/flexbox-mbp-horiz-004-ref Testing percent-valued padding and margin on flex items http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 6c0ceb18a38e39dca2b64c0ecf4dbab0e2ccf84a `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-height-auto-001 reference/flexbox-min-height-auto-001-ref Testing min-height:auto http://www.w3.org/TR/css-flexbox-1/#min-size-auto ed1c84ef7cfbd8dc8f8eb30456086b787a5dc009 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-height-auto-002a reference/flexbox-min-height-auto-002-ref Testing min-height:auto http://www.w3.org/TR/css-flexbox-1/#min-size-auto 87d44f45f75df534281219ace7c772bec9eadb3a `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-height-auto-002b reference/flexbox-min-height-auto-002-ref Testing min-height:auto http://www.w3.org/TR/css-flexbox-1/#min-size-auto a43c0584ffa860b945b4823863f9857f3ab01cf3 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-height-auto-002c reference/flexbox-min-height-auto-002-ref Testing min-height:auto http://www.w3.org/TR/css-flexbox-1/#min-size-auto 6d0fcdc069a3c5e809129156f6777d3ef463b9f3 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-height-auto-003 reference/flexbox-min-height-auto-003-ref Testing min-height:auto & 'overflow' interaction http://www.w3.org/TR/css-flexbox-1/#min-size-auto 2ddb4bf55ccef605b3f5b9560c8ac6337fc50a18 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-height-auto-004 reference/flexbox-min-height-auto-004-ref Testing min-height:auto & 'overflow' interaction http://www.w3.org/TR/css-flexbox-1/#min-size-auto b74a7f1946148ebd6ada153feaffa49b9a2cca8c `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-width-auto-001 reference/flexbox-min-width-auto-001-ref Testing min-width:auto http://www.w3.org/TR/css-flexbox-1/#min-size-auto a48b37f773f673c0304f45f9e792aca83118f9d2 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-width-auto-002a reference/flexbox-min-width-auto-002-ref Testing min-width:auto http://www.w3.org/TR/css-flexbox-1/#min-size-auto 0ab5f8d797a6b248e424ce4f3c5362d3d932fae3 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-width-auto-002b reference/flexbox-min-width-auto-002-ref Testing min-width:auto http://www.w3.org/TR/css-flexbox-1/#min-size-auto b71a407f020b17d0a06eddbbcf359772501a1afe `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-width-auto-002c reference/flexbox-min-width-auto-002-ref Testing min-width:auto http://www.w3.org/TR/css-flexbox-1/#min-size-auto 063b739917476caa8e7f89a7929a1371b945d4ac `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-width-auto-003 reference/flexbox-min-width-auto-003-ref Testing min-width:auto & 'overflow' interaction http://www.w3.org/TR/css-flexbox-1/#min-size-auto 141d1f4e330050e09455d5201771cc282ead71ff `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-min-width-auto-004 reference/flexbox-min-width-auto-004-ref Testing min-width:auto & 'overflow' interaction http://www.w3.org/TR/css-flexbox-1/#min-size-auto dc09fd0144cc3cc5494f9a55fd20320d9e13232c `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-order-from-lowest flex container layout starts with lowest order item http://www.w3.org/TR/css-flexbox-1/#propdef-order bc0b8ca50667ec58239e0c25b4ff2ee40dbb7951 `Sylvain Galineau`<mailto:galineau@adobe.com> This test check that a flex container layous out its content starting with the lowest numbered ordinal group and going up
flexbox-order-only-flexitems order only affects flex items http://www.w3.org/TR/css-flexbox-1/#propdef-order b4e87b426fa15e5ec8585b214d72fd1ee31351d2 `Sylvain Galineau`<mailto:galineau@adobe.com> This test check that the order property has no effect on elements that are not flex items
flexbox-overflow-horiz-001 reference/flexbox-overflow-horiz-001-ref Testing 'overflow' property on a horizontal flex container, with contents not overflowing http://www.w3.org/TR/css-flexbox-1/#flex-containers d1ae55f24412f2db93c92e831309ba8cce2959ea `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-horiz-002 reference/flexbox-overflow-horiz-002-ref Testing 'overflow' property on a horizontal flex container, with 'align-items: center' http://www.w3.org/TR/css-flexbox-1/#flex-containers 374420a8fa9c683660a75675b47802069fc32c84 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-horiz-003 reference/flexbox-overflow-horiz-003-ref Testing 'overflow' property on a horizontal flex container, with 'justify-content: space-around' http://www.w3.org/TR/css-flexbox-1/#flex-containers fff5a707d77be8a59733de6c53146cbe315a263c `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-horiz-004 reference/flexbox-overflow-horiz-004-ref Testing 'overflow' property on a horizontal flex container, with 'flex-wrap: wrap' http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property d47540be51b7d16b7fd64436729892cee46fdf57 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-horiz-005 reference/flexbox-overflow-horiz-005-ref Testing 'overflow' property on a horizontal flex container, with 'align-content: space-around' http://www.w3.org/TR/css-flexbox-1/#align-content-property 9868395bffe3e5c5fb2b4f36bb62fb36afbdd079 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-vert-001 reference/flexbox-overflow-vert-001-ref Testing 'overflow' property on a vertical flex container http://www.w3.org/TR/css-flexbox-1/#flex-containers 2eb2472978cb7a5324801b7bfc2fda7a1add930d `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-vert-002 reference/flexbox-overflow-vert-002-ref Testing 'overflow' property on a vertical flex container, with 'align-items: center' http://www.w3.org/TR/css-flexbox-1/#flex-containers 09c605d49498fc850db7ba7b87d3e42b12f11c8e `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-vert-003 reference/flexbox-overflow-vert-003-ref Testing 'overflow' property on a vertical flex container, with 'justify-content: space-around' http://www.w3.org/TR/css-flexbox-1/#flex-containers 5c02a662661e2b5d9daa7015683201a814743854 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-vert-004 reference/flexbox-overflow-vert-004-ref Testing 'overflow' property on a vertical flex container, with 'flex-wrap: wrap' http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property 8e4182289eed78292b76583c848f82bc99302d9d `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-overflow-vert-005 reference/flexbox-overflow-vert-005-ref Testing 'overflow' property on a vertical flex container, with 'align-content: space-around' http://www.w3.org/TR/css-flexbox-1/#align-content-property 58cbc069e2199f225955a818a33805477686c164 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-paint-ordering-001 reference/flexbox-paint-ordering-001-ref Testing the paint-order of overlapping flex items, with varying tweaks on the container http://www.w3.org/TR/css-flexbox-1/#painting 350877da4c5cab7c16620dd7d93c813a178b9f98 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-paint-ordering-002 reference/flexbox-paint-ordering-002-ref Testing the paint-order of overlapping flex items with 'order' and 'z-index' set http://www.w3.org/TR/css-flexbox-1/#painting f3e30ac5139fdd3a22358d0e6bc8e872ffc41ef6 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-root-node-001a reference/flexbox-root-node-001-ref Testing 'display:flex' on root node http://www.w3.org/TR/css-flexbox-1/#flex-containers e9f781e1155684797a4774428d459f5ee9bee206 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-root-node-001b reference/flexbox-root-node-001-ref Testing 'display:flex' on root node http://www.w3.org/TR/css-flexbox-1/#flex-containers a7dfe341f4bae5fe519eb19a832352d8950d465a `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-sizing-horiz-001 reference/flexbox-sizing-horiz-001-ref Testing sizing of an auto-sized horizontal flex container with min-width and max-width constraints http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 4e734479386d57634d02240b1a3d37a5222252e8 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-sizing-horiz-002 reference/flexbox-sizing-horiz-002-ref Testing sizing of an auto-sized horizontal flex container with min-height and max-height constraints http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 4963f41505c0e53be620ff6158dfba5c5c6fe26b `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-sizing-vert-001 reference/flexbox-sizing-vert-001-ref Testing sizing of an auto-sized vertical flex container with min-height and max-height constraints http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 4bece9556972f83b198bf5bc0e9335a2f2e5f0cd `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-sizing-vert-002 reference/flexbox-sizing-vert-002-ref Testing sizing of an auto-sized vertical flex container with min-width and max-width constraints http://www.w3.org/TR/css-flexbox-1/#layout-algorithm 752f2a91acbff746fd6ba7414e962a2c4e0e09e6 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-table-fixup-001a reference/flexbox-table-fixup-001-ref Testing that table cells in a flex container get an anonymous table wrapper that forms the flex item http://www.w3.org/TR/css-flexbox-1/#flex-items 73c984c73adfae58f2b1a2ad77d7fdd9ef12fd47 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-table-fixup-001b reference/flexbox-table-fixup-001-ref Testing that the 'flex' shorthand has no effect on table cells in a flex container, since they aren't flex items http://www.w3.org/TR/css-flexbox-1/#flex-items 39c5b9776686a49723f158b01285b1c5ecda0d99 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-whitespace-handling-001a reference/flexbox-whitespace-handling-001-ref Test that anonymous flex items aren't created for pure-whitespace inline content http://www.w3.org/TR/css-flexbox-1/#flex-items adf4c8485f397ef7c079db3aeb1df21b633b35aa `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-whitespace-handling-001b reference/flexbox-whitespace-handling-001-ref Test that flex items are created correctly http://www.w3.org/TR/css-flexbox-1/#flex-items 97512777163dc1da26e9a2df8abd4694ec32572c `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-whitespace-handling-002 reference/flexbox-whitespace-handling-002-ref Test that whitespace is preserved at the edges of anonymous flex items if 'white-space: pre' is set http://www.w3.org/TR/css-flexbox-1/#flex-items 6de836d376b85b954af361b51db27193dd535603 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-with-pseudo-elements-001 reference/flexbox-with-pseudo-elements-001-ref Testing that generated content nodes are treated as a flex items http://www.w3.org/TR/css-flexbox-1/#flex-items 840f23805278348fabc43767fbda8357c1e58b8a `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-with-pseudo-elements-002 reference/flexbox-with-pseudo-elements-002-ref Testing that generated content nodes are treated as a flex items, and honor 'order' http://www.w3.org/TR/css-flexbox-1/#flex-items 1131841b5d5f11eac2b9e81fc6f4358d418a6f2f `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-with-pseudo-elements-003 reference/flexbox-with-pseudo-elements-003-ref Testing that generated content nodes with table-part display types are wrapped with an anonymous table, which forms a flex item http://www.w3.org/TR/css-flexbox-1/#flex-items 58e927b1ff3432b60ab48838cd47f1ec1b3fd0d2 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-001 reference/flexbox-writing-mode-001-ref Try various flex-flow values, with 'direction: ltr' and 'writing-mode: horizontal-tb' http://www.w3.org/TR/css-flexbox-1/#propdef-flex-direction a8724a8de3bd951d06e289fb86dbadc70a885d22 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-002 reference/flexbox-writing-mode-002-ref Try various flex-flow values, with 'direction: ltr' and 'writing-mode: vertical-rl' http://www.w3.org/TR/css-flexbox-1/#propdef-flex-direction 0952e87b8e95154bbb469d828c79b8c7e02df63b `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-003 reference/flexbox-writing-mode-003-ref Try various flex-flow values, with 'direction: ltr' and 'writing-mode: vertical-lr' http://www.w3.org/TR/css-flexbox-1/#propdef-flex-direction c64a448ab00761be9fc61d430a293f990e0b26ca `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-004 reference/flexbox-writing-mode-004-ref Try various flex-flow values, with 'direction: rtl' and 'writing-mode: horizontal-tb' http://www.w3.org/TR/css-flexbox-1/#propdef-flex-direction 7a76373f9e4463a60d455d60458eb4c96228a8a9 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-005 reference/flexbox-writing-mode-005-ref Try various flex-flow values, with 'direction: rtl' and 'writing-mode: vertical-rl' http://www.w3.org/TR/css-flexbox-1/#propdef-flex-direction c3e3b5768870e7b43b47714a41ea9014831b1f3a `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-006 reference/flexbox-writing-mode-006-ref Try various flex-flow values, with 'direction: rtl' and 'writing-mode: vertical-lr' http://www.w3.org/TR/css-flexbox-1/#propdef-flex-direction f31aad810265610875f37bfd2499c838362e8b87 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-007 reference/flexbox-writing-mode-007-ref Verify that explicit sizes are honored on flex items whose writing-mode may differ from the flex container's writing-mode http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode 0557a81af23da4d969bce70f840968a7d5947006 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-008 reference/flexbox-writing-mode-008-ref Verify that explicit sizes are honored on flex items whose writing-mode may differ from the flex container's writing-mode http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode aaac3dcddfec40e5c67ae479e0df2184ddec82d2 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox-writing-mode-009 reference/flexbox-writing-mode-009-ref Verify that explicit sizes are honored on flex items whose writing-mode may differ from the flex container's writing-mode http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-writing-modes-3/#propdef-writing-mode 931b9d02203e63cacec94a45b450d721c5222706 `Daniel Holbert`<mailto:dholbert@mozilla.com>
flexbox_absolute-atomic reference/flexbox_absolute-atomic-ref flexbox | abspos atomic flexitems http://www.w3.org/TR/css-flexbox-1/#abspos-items 4d9971a3b967bf248f369162f61f772bac64343c `Opera Software`<http://opera.com>
flexbox_align-content-center reference/flexbox_align-content-center-ref flexbox | align-content: center http://www.w3.org/TR/css-flexbox-1/#align-content-property 482657e32368cdcc32e8ea890a7146c06b5e5e8c `Opera Software`<http://opera.com>
flexbox_align-content-flexend reference/flexbox_align-content-flexend-ref flexbox | align-content: flex-end http://www.w3.org/TR/css-flexbox-1/#align-content-property 59391d7952417cd2922c6ef2e31792a17abb4336 `Opera Software`<http://opera.com>
flexbox_align-content-flexstart reference/flexbox_align-content-flexstart-ref flexbox | align-content: flex-start http://www.w3.org/TR/css-flexbox-1/#align-content-property 42337dca0f9503ea3f6203fb64f622a787f2ebe9 `Opera Software`<http://opera.com>
flexbox_align-content-spacearound reference/flexbox_align-content-spacearound-ref flexbox | align-content: space-around http://www.w3.org/TR/css-flexbox-1/#align-content-property c3197be7c2f8dd89a06863dcf48c6d1608b4b5f5 `Opera Software`<http://opera.com>
flexbox_align-content-spacebetween reference/flexbox_align-content-spacebetween-ref flexbox | align-content: space-between http://www.w3.org/TR/css-flexbox-1/#align-content-property e9f9cde1e988a0b75a4d2342e500e0f93716afc8 `Opera Software`<http://opera.com>
flexbox_align-content-stretch reference/flexbox_align-content-stretch-ref flexbox | align-content: stretch http://www.w3.org/TR/css-flexbox-1/#align-content-property 482f457b2c0e5d98b1cd792c11f5c89906dff1e7 `Opera Software`<http://opera.com>
flexbox_align-content-stretch-2 reference/flexbox_align-content-stretch-2-ref flexbox | align-content: stretch http://www.w3.org/TR/css-flexbox-1/#align-content-property 3c4685b0b2b647ec0617f5b28c5e3c5da9aa1f85 `Opera Software`<http://opera.com>
flexbox_align-items-baseline reference/flexbox_align-items-baseline-ref flexbox | align-items: baseline http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 736910facb95d2622dc8ef20d0bd10cc5f223a4e `Opera Software`<http://opera.com>
flexbox_align-items-center reference/flexbox_align-items-center-ref flexbox | align-items: center http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 829c9d38f71bfd20e3f926e3eda11e302364d3f3 `Opera Software`<http://opera.com>
flexbox_align-items-center-2 reference/flexbox_align-items-center-2-ref flexbox | align-items: center http://www.w3.org/TR/css-flexbox-1/#propdef-align-items a269942aa6bce9427942e8616c860223befbfa89 `Opera Software`<http://opera.com>
flexbox_align-items-flexend reference/flexbox_align-items-flexend-ref flexbox | align-items: flex-end http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 62bdd25fb5dacadaa096c07e44995f01b1fe8460 `Opera Software`<http://opera.com>
flexbox_align-items-flexend-2 reference/flexbox_align-items-flexend-2-ref flexbox | align-items: flex-end http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 470b06ab1d6c57743b076177a76d53df12888482 `Opera Software`<http://opera.com>
flexbox_align-items-flexstart reference/flexbox_align-items-flexstart-ref flexbox | align-items: flex-start http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 52d6da57f7ff9816636b9a891751d9d56ea4c7a3 `Opera Software`<http://opera.com>
flexbox_align-items-flexstart-2 reference/flexbox_align-items-flexstart-2-ref flexbox | align-items: flex-start http://www.w3.org/TR/css-flexbox-1/#propdef-align-items da39ecea0abe5bdfce04a4e73cf208edc6264738 `Opera Software`<http://opera.com>
flexbox_align-items-stretch reference/flexbox_align-items-stretch-ref flexbox | align-items: stretch http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 40c44ec47c70bcf3a27a7db3007ce3a9871232ec `Opera Software`<http://opera.com>
flexbox_align-items-stretch-2 reference/flexbox_align-items-stretch-2-ref flexbox | align-items: stretch http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 4f1bb3f618f016061fa5b5c060e41f8227aa4023 `Opera Software`<http://opera.com>
flexbox_align-items-stretch-writing-modes reference/flexbox_align-items-stretch-writing-modes-ref Flexbox align-items: stretch with writing-mode vertical-lr and vertical-rl http://www.w3.org/TR/css-flexbox-1/#propdef-align-items,http://www.w3.org/TR/css-writing-modes-3/#writing-mode d1bb1a411a86d0232f96b7776b01c086456c3617 `Mitsuteru Sawa`<mailto:mitsuteru.s@gmail.com> vertical-writing-mode flex items should stretch
flexbox_align-self-auto reference/flexbox_align-self-auto-ref flexbox | align-self: auto http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 83c1338cd3a0715339d2e75a08967fdfd5785ea6 `Opera Software`<http://opera.com>
flexbox_align-self-baseline reference/flexbox_align-self-baseline-ref flexbox | align-self: baseline http://www.w3.org/TR/css-flexbox-1/#propdef-align-items dc48eed4574fa0a579f208c78cbd6c4bbefc7008 `Opera Software`<http://opera.com>
flexbox_align-self-center reference/flexbox_align-self-center-ref flexbox | align-self: center http://www.w3.org/TR/css-flexbox-1/#propdef-align-items b47b024f769c5277b9212039815369ce07e544e4 `Opera Software`<http://opera.com>
flexbox_align-self-flexend reference/flexbox_align-self-flexend-ref flexbox | align-self: flex-end http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 26f0fd184325f22e03fae329f8a2fc32dd59fd68 `Opera Software`<http://opera.com>
flexbox_align-self-flexstart reference/flexbox_align-self-flexstart-ref flexbox | align-self: flex-start http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 8c309aed80fe290076d8c162ec78445b132be226 `Opera Software`<http://opera.com>
flexbox_align-self-stretch reference/flexbox_align-self-stretch-ref flexbox | align-self: stretch http://www.w3.org/TR/css-flexbox-1/#propdef-align-items bd4218626374e0537295c389f6493f9f28fb494e `Opera Software`<http://opera.com>
flexbox_block reference/flexbox_empty-ref flexbox | block http://www.w3.org/TR/css-flexbox-1/#flex-containers b3d81fa0fcf6798a8980fdbd8955278a4dc13d0c `Opera Software`<http://opera.com>
flexbox_box-clear reference/flexbox_box-clear-ref flexbox | cleared box http://www.w3.org/TR/css-flexbox-1/#flex-containers c38979d7e772cb5b4d05aa2e9fc37b0d9b08c458 `Opera Software`<http://opera.com>
flexbox_columns reference/flexbox_columns-ref flexbox | multicol http://www.w3.org/TR/css-flexbox-1/#flex-containers 297153339eb61889abf033f09bf49f37fef934ce `Opera Software`<http://opera.com>
flexbox_columns-flexitems reference/flexbox_columns-flexitems-ref flexbox | multicol on flexbox items http://www.w3.org/TR/css-flexbox-1/#flex-containers bebd2a295c93d54e819399b86a7d3cab5df543ce `Opera Software`<http://opera.com>
flexbox_columns-flexitems-2 reference/flexbox_columns-flexitems-2-ref flexbox | multicol on flexbox items http://www.w3.org/TR/css-flexbox-1/#flex-containers 640c16169121a745c0f2504beb052769a91bcadd `Opera Software`<http://opera.com>
flexbox_computedstyle_align-content-center reference/ref-pass-body flexbox | computed style | align-content: center dom http://www.w3.org/TR/css-flexbox-1/#align-content-property 62addb19d645250ca7c38cd420e0c5c72a85bba0 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-content-flex-end reference/ref-pass-body flexbox | computed style | align-content: flex-end dom http://www.w3.org/TR/css-flexbox-1/#align-content-property 29cad8dd81ecd2834ed996def67b7fe7a2af2fb0 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-content-flex-start reference/ref-pass-body flexbox | computed style | align-content: flex-start dom http://www.w3.org/TR/css-flexbox-1/#align-content-property f203255eae7bac313f3175a7f0de4e3249ae04d3 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-content-space-around reference/ref-pass-body flexbox | computed style | align-content: space-around dom http://www.w3.org/TR/css-flexbox-1/#align-content-property ec34f8b1b3833139d5bc895e8dc856e755720e54 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-content-space-between reference/ref-pass-body flexbox | computed style | align-content: space-between dom http://www.w3.org/TR/css-flexbox-1/#align-content-property 97863d2ffa279426e8aad6a8900e80448ce785f9 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-items-baseline reference/ref-pass-body flexbox | computed style | align-items: baseline dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 2ad1fab98161fda41efa9a4952861315a44bfff1 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-items-center reference/ref-pass-body flexbox | computed style | align-items: center dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 67bf459031adb99fd33da38532023d4f423de3c2 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-items-flex-end reference/ref-pass-body flexbox | computed style | align-items: flex-end dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 281f9ad73a196825bf47d65519d4b64aa48ce63a `Opera Software`<http://opera.com>
flexbox_computedstyle_align-items-flex-start reference/ref-pass-body flexbox | computed style | align-items: flex-start dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 0b4ae91b4abcf1713ba786c883dee416e40d1d9a `Opera Software`<http://opera.com>
flexbox_computedstyle_align-items-invalid reference/ref-pass-body flexbox | computed style | align-items: invalid dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-items a9c458bf2891dda0988bee7c853f2cd204ec5092 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-items-stretch reference/ref-pass-body flexbox | computed style | align-items: stretch dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-items 9be43311a3ca366cd803dcf17da1202f647f11a4 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-self-baseline reference/ref-pass-body flexbox | computed style | align-self: baseline dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-self ce1e2923f5c77debac6f55c78a18d7aaac8f6a8a `Opera Software`<http://opera.com>
flexbox_computedstyle_align-self-center reference/ref-pass-body flexbox | computed style | align-self: center dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 288b831ba54587ed1ad02f81c25d348de9ab133d `Opera Software`<http://opera.com>
flexbox_computedstyle_align-self-flex-end reference/ref-pass-body flexbox | computed style | align-self: flex-end dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 7d4d23359eda048decd404ade4f7972c0cbe4757 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-self-flex-start reference/ref-pass-body flexbox | computed style | align-self: flex-start dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 2515e8e650f8f4765baa0613577666d4e8ff27b0 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-self-invalid reference/ref-pass-body flexbox | computed style | align-self: invalid dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-self 40fdbe1a0acd0769632418a117dda82c44b1e2e9 `Opera Software`<http://opera.com>
flexbox_computedstyle_align-self-stretch reference/ref-pass-body flexbox | computed style | align-self: stretch dom http://www.w3.org/TR/css-flexbox-1/#propdef-align-self dac2da0a5b9d401533649f442f7947b987d71ad5 `Opera Software`<http://opera.com>
flexbox_computedstyle_display reference/ref-pass-body flexbox | computed style | display: flex dom http://www.w3.org/TR/css-flexbox-1/#flex-containers e7f6da70160d661c4fdce2d93cce036a70b508b8 `Opera Software`<http://opera.com>
flexbox_computedstyle_display-inline reference/ref-pass-body flexbox | computed style | display: inline-flex dom http://www.w3.org/TR/css-flexbox-1/#flex-containers 15e33468e7c03922e3f5d5b9213ad751e595fbe1 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-basis-0 reference/ref-pass-body flexbox | computed style | flex-basis: 0 dom http://www.w3.org/TR/css-flexbox-1/#flex-basis-property cf75d173a497479e517a58e9d2ea5563dd58ef14 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-basis-0percent reference/ref-pass-body flexbox | computed style | flex-basis: 0% dom http://www.w3.org/TR/css-flexbox-1/#flex-basis-property adec4138f98318be3f4bd3d4abcf64d315c9c0f5 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-basis-auto reference/ref-pass-body flexbox | computed style | flex-basis: auto dom http://www.w3.org/TR/css-flexbox-1/#flex-basis-property 1e0ffb01bda4122e70072b761cab72a991f9931e `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-basis-percent reference/ref-pass-body flexbox | computed style | flex-basis: percent dom http://www.w3.org/TR/css-flexbox-1/#flex-basis-property 8f7a75f379dedb5a8edc286aa68de03eaecd862d `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-direction-column reference/ref-pass-body flexbox | computed style | flex-direction: column dom http://www.w3.org/TR/css-flexbox-1/#flex-direction e8ed255d8fa1dbd7562021c781fd3ffc58a591ec `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-direction-column-reverse reference/ref-pass-body flexbox | computed style | flex-direction: column-reverse dom http://www.w3.org/TR/css-flexbox-1/#flex-direction 3138cf05f8ed9934686234b9c78468edfb1e7ce5 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-direction-invalid reference/ref-pass-body flexbox | computed style | flex-direction: row dom http://www.w3.org/TR/css-flexbox-1/#flex-direction 46f05c5aa4142bec62b38b79da27996902a14c3b `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-direction-row reference/ref-pass-body flexbox | computed style | flex-direction: row dom http://www.w3.org/TR/css-flexbox-1/#flex-direction 4aa1709d56f435eafa955916609cae9fe56cbff2 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-direction-row-reverse reference/ref-pass-body flexbox | computed style | flex-direction: row-reverse dom http://www.w3.org/TR/css-flexbox-1/#flex-direction 46d1c052c605e0d3bcae27d70eaae38bb8b1f89e `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-column reference/ref-pass-body flexbox | computed style | flex-flow: column dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column 451b5092b3f83a41cca3413e270218b066c83b94 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-column-nowrap reference/ref-pass-body flexbox | computed style | flex-flow: column nowrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-nowrap aaf329b0654bfe3c287601ebdf6f0adae5b79379 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-column-reverse reference/ref-pass-body flexbox | computed style | flex-flow: column-reverse dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column-reverse 180397840dea82bbb77a69cb38205cc32b174984 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-column-reverse-nowrap reference/ref-pass-body flexbox | computed style | flex-flow: column-reverse nowrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column-reverse,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-nowrap 7710479d7b9b0241c9f6cc7921d88a01375020c8 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-column-reverse-wrap reference/ref-pass-body flexbox | computed style | flex-flow: column-reverse wrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column-reverse,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap 6eea80b27ffd37ea01ecfc74156f66a7172d5e16 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-column-wrap reference/ref-pass-body flexbox | computed style | flex-flow: column wrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap 1cb63941c5676d176bc51be50328ee15092ab5a8 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-column-wrap-reverse reference/ref-pass-body flexbox | computed style | flex-flow: column wrap-reverse dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap-reverse c363b07aac45dcc7ce4300c0b4899479941d4a8f `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-nowrap reference/ref-pass-body flexbox | computed style | flex-flow: nowrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-nowrap 8b84de3f8eef756ed68c345e666a9e595e2c08d4 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-row reference/ref-pass-body flexbox | computed style | flex-flow: row dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-row 481dea00bf33a0425aeace3a0a3b09e46264eac0 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-row-nowrap reference/ref-pass-body flexbox | computed style | flex-flow: row nowrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-row,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-nowrap 1e7e9eeb79d7edd9c34102adc09650a759e2361a `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-row-reverse reference/ref-pass-body flexbox | computed style | flex-flow: row-reverse dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-row-reverse 836cb44fdc0bf2f4b98bbeedbcf2593509985616 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-row-reverse-nowrap reference/ref-pass-body flexbox | computed style | flex-flow: row-reverse nowrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-row-reverse,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-nowrap c79eb44bbc1cc491ebe813a6c7a3980633309c15 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-row-reverse-wrap reference/ref-pass-body flexbox | computed style | flex-flow: row-reverse wrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-row-reverse,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap afd99e782b643542e209e037ca8cc0f371f77260 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-row-reverse-wrap-reverse reference/ref-pass-body flexbox | computed style | flex-flow: row-reverse wrap-reverse dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-row-reverse,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap-reverse 701c06efded1f06b17640327987679c5beaf3250 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-row-wrap reference/ref-pass-body flexbox | computed style | flex-flow: row wrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-row,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap 2bcdc74edd3c7ba5cccccd85ce900d63718f406d `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-row-wrap-reverse reference/ref-pass-body flexbox | computed style | flex-flow: row wrap-reverse dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-row,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap-reverse a66a4d38ee0a7ad2cc973ee5a0f23576b2f7e483 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-flow-wrap reference/ref-pass-body flexbox | computed style | flex-flow: wrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap 261d0f5350d4822ace02d270be150185623d9634 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-grow-0 reference/ref-pass-body flexbox | computed style | flex-grow: 0 dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow c92f9416a0e86440851af99db55aaf26924492d1 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-grow-invalid reference/ref-pass-body flexbox | computed style | flex-grow: negative dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow 964e22a3871e0c5f05ea05fb6a38e5b4783955e1 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-grow-number reference/ref-pass-body flexbox | computed style | flex-grow: number dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow 24960e520f367b0ce29992148954582d4e43d224 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shorthand reference/ref-pass-body flexbox | computed style | flex: invalid dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex 925dcae2b1c40494ffb2a809edc9873b49c3171a `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shorthand-0-auto reference/ref-pass-body flexbox | computed style | flex: 0 auto dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex eac4513b139b9474cdc662d896aeccfa2eada009 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shorthand-auto reference/ref-pass-body flexbox | computed style | flex: auto dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex 93123c78d317dc9559678e8259caf6b0c26dea24 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shorthand-initial reference/ref-pass-body flexbox | computed style | flex: initial dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex 8cc334ce02bce28ea3452288b2653f857b35a4e6 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shorthand-invalid reference/ref-pass-body flexbox | computed style | flex: invalid dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex 4556711538161200fcb7db90eb35f9e21443ea59 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shorthand-none reference/ref-pass-body flexbox | computed style | flex: auto dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex 4628a756415a016ed23a51c48abb6d7833cfcd29 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shorthand-number reference/ref-pass-body flexbox | computed style | flex: number dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex 60acfca58faaa7dceb934bd9232d9a00ffd526bc `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shrink-0 reference/ref-pass-body flexbox | computed style | flex-shrink: 0 dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink a5edca2a35f7e59ddd75133224005cf2d4d7a7e9 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shrink-invalid reference/ref-pass-body flexbox | computed style | flex-shrink: negative dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink bb694a52bebcf1c4a941c2227e0f3fd49e126a0d `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-shrink-number reference/ref-pass-body flexbox | computed style | flex-shrink: number dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink 8fa0d89f57b6c4a14686961f7a2d31f9d7d2d332 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-wrap-invalid reference/ref-pass-body flexbox | computed style | flex-wrap: wrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap bcd00aaf592dd9671011c82131a4433521bbd6d9 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-wrap-nowrap reference/ref-pass-body flexbox | computed style | flex-wrap: nowrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 453f2f391bf751800ee4d6b29760d2032a526d7a `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-wrap-wrap reference/ref-pass-body flexbox | computed style | flex-wrap: wrap dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 8ebc673a8a51285e9c2da9ba372bd0e7a2e7c028 `Opera Software`<http://opera.com>
flexbox_computedstyle_flex-wrap-wrap-reverse reference/ref-pass-body flexbox | computed style | flex-wrap: wrap-reverse dom http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 63f817b37233a4b45e870d6cfc1e6e598a9a7de2 `Opera Software`<http://opera.com>
flexbox_computedstyle_justify-content-center reference/ref-pass-body flexbox | computed style | justify-content: center dom http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 5d4d0a1cd43a651cc6f6da0e61f4638019bef38d `Opera Software`<http://opera.com>
flexbox_computedstyle_justify-content-flex-end reference/ref-pass-body flexbox | computed style | justify-content: flex-end dom http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 72491118510586cec847e142b219decc93308854 `Opera Software`<http://opera.com>
flexbox_computedstyle_justify-content-flex-start reference/ref-pass-body flexbox | computed style | justify-content: flex-start dom http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 2040fa69912eb6c1c42c690a8edb2c0ddf33d309 `Opera Software`<http://opera.com>
flexbox_computedstyle_justify-content-space-around reference/ref-pass-body flexbox | computed style | justify-content: space-around dom http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content da0af0ef66852e425682bd285301da530f55d8d4 `Opera Software`<http://opera.com>
flexbox_computedstyle_justify-content-space-between reference/ref-pass-body flexbox | computed style | justify-content: space-between dom http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 80584aeaf1c1205140eff98f2e722f88230215c3 `Opera Software`<http://opera.com>
flexbox_computedstyle_min-height-auto reference/ref-pass-body flexbox | computed style | min-height: auto dom http://www.w3.org/TR/css-flexbox-1/#min-size-auto aab95f096c3a7eb51281856fffa19d9b025ef818 `Opera Software`<http://opera.com>
flexbox_computedstyle_min-width-auto reference/ref-pass-body flexbox | computed style | min-width: auto dom http://www.w3.org/TR/css-flexbox-1/#min-size-auto c7b8cf33d103b61e909abfd48fbda8d27361625a `Opera Software`<http://opera.com>
flexbox_computedstyle_order reference/ref-pass-body flexbox | computed style | order: 0 dom http://www.w3.org/TR/css-flexbox-1/#propdef-order 94980b5e1c17d6e6b9978fe38a109c8c88e76c0a `Opera Software`<http://opera.com>
flexbox_computedstyle_order-inherit reference/ref-pass-body flexbox | computed style | order: -1 dom http://www.w3.org/TR/css-flexbox-1/#propdef-order ff0c10ec5872f4507d485ad0df8c99fa0e2a3d03 `Opera Software`<http://opera.com>
flexbox_computedstyle_order-integer reference/ref-pass-body flexbox | computed style | order: integer dom http://www.w3.org/TR/css-flexbox-1/#propdef-order 069a507949e7eccbd64a01d58646a663b0f1d500 `Opera Software`<http://opera.com>
flexbox_computedstyle_order-invalid reference/ref-pass-body flexbox | computed style | order: noninteger dom http://www.w3.org/TR/css-flexbox-1/#propdef-order 9d18fb9ab03c106a5b450a989aa5b1f9e7a20df1 `Opera Software`<http://opera.com>
flexbox_computedstyle_order-negative reference/ref-pass-body flexbox | computed style | order: -1 dom http://www.w3.org/TR/css-flexbox-1/#propdef-order b438810e317b8dea137d60f3a8ab339fc2a1ec87 `Opera Software`<http://opera.com>
flexbox_direction-column reference/flexbox_direction-column-ref flexbox | flex-direction: column http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 016ee30f42dcea1993ff8772b43f2783f358d30e `Opera Software`<http://opera.com>
flexbox_direction-column-reverse reference/flexbox_direction-column-reverse-ref flexbox | flex-direction: column-reverse http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 0ac54595950e762ca7752f3dd9f87ecd17aee308 `Opera Software`<http://opera.com>
flexbox_direction-row-reverse reference/flexbox_direction-row-reverse-ref flexbox | flex-direction: row-reverse http://www.w3.org/TR/css-flexbox-1/#flex-direction-property f1320e1caafb090d6e0cbdc74c873f98dfea7d85 `Opera Software`<http://opera.com>
flexbox_display reference/flexbox_display-ref flexbox | display error-handling http://www.w3.org/TR/css-flexbox-1/#flex-containers 429c145ce111df3e08fa2ff4f5692e56bc4bbb4d `Opera Software`<http://opera.com>
flexbox_fbfc reference/flexbox_fbfc-ref flexbox | flex formatting context :: float intrusion http://www.w3.org/TR/css-flexbox-1/#flex-containers 5b33462ad18995d80f363daf64588ae2b06b1012 `Opera Software`<http://opera.com>
flexbox_fbfc2 reference/flexbox_fbfc2-ref flexbox | flex formatting context :: float intrusion http://www.w3.org/TR/css-flexbox-1/#flex-containers 96924b6ce7df17a725dff73a27ec2baa994a6744 `Opera Software`<http://opera.com>
flexbox_first-line reference/flexbox_first-line-ref flexbox | first-line http://www.w3.org/TR/css-flexbox-1/#placement deee74919efb8cb2fcf9db6c4e7275d6aae4acfe `Opera Software`<http://opera.com>
flexbox_flex-0-0 reference/flexbox_flex-0-0-0-ref flexbox | flex: 0 0 http://www.w3.org/TR/css-flexbox-1/#flex-property c700880ab24c78fb3bf224f0ca08712384afada1 `Opera Software`<http://opera.com>
flexbox_flex-0-0-0 reference/flexbox_flex-0-0-0-ref flexbox | flex: 0 0 0 http://www.w3.org/TR/css-flexbox-1/#flex-property f4f8b31d8d88dd7547609e3c8c792a60c9fb44c8 `Opera Software`<http://opera.com>
flexbox_flex-0-0-0-unitless reference/flexbox_flex-0-0-0-ref flexbox | flex: 0 0 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property 49f8ff4629e2b3657fd206cae67a2c6c03c23021 `Opera Software`<http://opera.com>
flexbox_flex-0-0-1-unitless-basis reference/flexbox_flex-unitless-basis-ref flexbox | flex: 0 0 N unitless http://www.w3.org/TR/css-flexbox-1/#flex-property e96549ac558fb04665382afb6c4e9a58a1d5c7e4 `Opera Software`<http://opera.com>
flexbox_flex-0-0-auto reference/flexbox_flex-0-0-auto-ref flexbox | flex: 0 0 auto http://www.w3.org/TR/css-flexbox-1/#flex-property 1f83fd1acdbc3e5b3126fcf85c042a34f41757a3 `Opera Software`<http://opera.com>
flexbox_flex-0-0-auto-shrink reference/flexbox_flex-0-0-auto-shrink-ref flexbox | flex: 0 0 auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 872227c6f46cca8440953c712307e96a0ea615e2 `Opera Software`<http://opera.com>
flexbox_flex-0-0-N reference/flexbox_flex-0-0-N-ref flexbox | flex: 0 0 N http://www.w3.org/TR/css-flexbox-1/#flex-property d3408b357cbaf0e975c4486f84cb4395d0733b60 `Opera Software`<http://opera.com>
flexbox_flex-0-0-N-shrink reference/flexbox_flex-0-0-N-shrink-ref flexbox | flex: 0 0 N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property cd3b78fd972958cd4f625aa94778cb3db202971f `Opera Software`<http://opera.com>
flexbox_flex-0-0-N-unitless-basis reference/flexbox_flex-unitless-basis-ref flexbox | flex: 0 0 N unitless http://www.w3.org/TR/css-flexbox-1/#flex-property e96549ac558fb04665382afb6c4e9a58a1d5c7e4 `Opera Software`<http://opera.com>
flexbox_flex-0-0-Npercent reference/flexbox_flex-0-0-Npercent-ref flexbox | flex: 0 0 N% http://www.w3.org/TR/css-flexbox-1/#flex-property 0e1bbb4a2e1ff9925f1a7d93807f76bbc2d88697 `Opera Software`<http://opera.com>
flexbox_flex-0-0-Npercent-shrink reference/flexbox_flex-0-0-Npercent-shrink-ref flexbox | flex: 0 0 N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 02deb4b5b87b427417f84c9d49676094fb3514b8 `Opera Software`<http://opera.com>
flexbox_flex-0-1 reference/flexbox_flex-0-1-0-ref flexbox | flex: 0 1 http://www.w3.org/TR/css-flexbox-1/#flex-property 2d7ebb97e70e28b851a994dc6868576348f20846 `Opera Software`<http://opera.com>
flexbox_flex-0-1-0 reference/flexbox_flex-0-1-0-ref flexbox | flex: 0 1 0 http://www.w3.org/TR/css-flexbox-1/#flex-property bc322e6b303db6714b0f29e828a1484fff7ac309 `Opera Software`<http://opera.com>
flexbox_flex-0-1-0-unitless reference/flexbox_flex-0-1-0-ref flexbox | flex: 0 1 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property 1aedfd2b0736705d560850b4e2264a5af053fd54 `Opera Software`<http://opera.com>
flexbox_flex-0-1-1-unitless-basis reference/flexbox_flex-unitless-basis-ref flexbox | flex: 0 1 1 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property 3c1a36d032f4ede8f287ae45e57774c09174ea79 `Opera Software`<http://opera.com>
flexbox_flex-0-1-auto reference/flexbox_flex-0-1-auto-ref flexbox | flex: 0 1 auto http://www.w3.org/TR/css-flexbox-1/#flex-property 9025decf2661f88bfd026b9713ed3873f9c82a5b `Opera Software`<http://opera.com>
flexbox_flex-0-1-auto-shrink reference/flexbox_flex-0-1-auto-shrink-ref flexbox | flex: 0 1 auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 0d2169486b9b96e0b96108c677045b28f532865b `Opera Software`<http://opera.com>
flexbox_flex-0-1-N reference/flexbox_flex-0-1-N-ref flexbox | flex: 0 1 N http://www.w3.org/TR/css-flexbox-1/#flex-property 94c692bb9770fbb6dd98f6c81d217c6dcfeaf81f `Opera Software`<http://opera.com>
flexbox_flex-0-1-N-shrink reference/flexbox_flex-0-1-N-shrink-ref flexbox | flex: 0 1 N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property eb25850e4397a12c3ce80ba14483310417ded70b `Opera Software`<http://opera.com>
flexbox_flex-0-1-N-unitless-basis reference/flexbox_flex-unitless-basis-ref flexbox | flex: 0 1 N unitless http://www.w3.org/TR/css-flexbox-1/#flex-property ab16feed86038b50d5dbc79ffd46ee7f27eb29e3 `Opera Software`<http://opera.com>
flexbox_flex-0-1-Npercent reference/flexbox_flex-0-1-Npercent-ref flexbox | flex: 0 1 N% http://www.w3.org/TR/css-flexbox-1/#flex-property 7d1a817ee66afea7e7c67fc14058ea64d087706f `Opera Software`<http://opera.com>
flexbox_flex-0-1-Npercent-shrink reference/flexbox_flex-0-1-Npercent-shrink-ref flexbox | flex: 0 1 N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property f7e360f8027aea362a5ad301a60a94cfffb4c46b `Opera Software`<http://opera.com>
flexbox_flex-0-auto reference/flexbox_flex-initial-ref flexbox | flex: 0 auto http://www.w3.org/TR/css-flexbox-1/#flex-property 7d87bbb5bde18e2d8d787b93736a11c946cc4fad `Opera Software`<http://opera.com>
flexbox_flex-0-N reference/flexbox_flex-0-N-0-ref flexbox | flex: 0 N http://www.w3.org/TR/css-flexbox-1/#flex-property 85148d64befc2e76feeea0af686fa4d04cc24c4d `Opera Software`<http://opera.com>
flexbox_flex-0-N-0 reference/flexbox_flex-0-N-0-ref flexbox | flex: 0 N 0 http://www.w3.org/TR/css-flexbox-1/#flex-property 560624f27113b9dc9cc2245dd4dcac22e384d2c6 `Opera Software`<http://opera.com>
flexbox_flex-0-N-0-unitless reference/flexbox_flex-0-N-0-ref flexbox | flex: 0 N 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property 91e06396cf3295c1569dce0d3798a7a1d6eb5408 `Opera Software`<http://opera.com>
flexbox_flex-0-N-auto reference/flexbox_flex-0-N-auto-ref flexbox | flex: 0 N auto http://www.w3.org/TR/css-flexbox-1/#flex-property e5347c9c7466fd1959e893f5fa8e26973cb2af40 `Opera Software`<http://opera.com>
flexbox_flex-0-N-auto-shrink reference/flexbox_flex-0-N-auto-shrink-ref flexbox | flex: 0 N auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 674623b123f9ee6096f84316e10fc64aa631c46d `Opera Software`<http://opera.com>
flexbox_flex-0-N-N reference/flexbox_flex-0-N-N-ref flexbox | flex: 0 N N http://www.w3.org/TR/css-flexbox-1/#flex-property 9c7ca82a3efb9cedec88dadbef6e93e7276d9d12 `Opera Software`<http://opera.com>
flexbox_flex-0-N-N-shrink reference/flexbox_flex-0-N-N-shrink-ref flexbox | flex: 0 N N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 9b636c0297fda75d96e02a8b4efe936069d75db8 `Opera Software`<http://opera.com>
flexbox_flex-0-N-Npercent reference/flexbox_flex-0-N-Npercent-ref flexbox | flex: 0 N N% http://www.w3.org/TR/css-flexbox-1/#flex-property a2d54e001f203ba733c983da558f0cbf4f3b63ff `Opera Software`<http://opera.com>
flexbox_flex-0-N-Npercent-shrink reference/flexbox_flex-0-N-Npercent-shrink-ref flexbox | flex: 0 N N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 5293c878d73ba25f8b2858f6eaafc0cef4f579ea `Opera Software`<http://opera.com>
flexbox_flex-1-0 reference/flexbox_flex-1-0-0-ref flexbox | flex: 1 0 http://www.w3.org/TR/css-flexbox-1/#flex-property 6e941ab3fb55625d16c84cb711e38085a10be5fe `Opera Software`<http://opera.com>
flexbox_flex-1-0-0 reference/flexbox_flex-1-0-0-ref flexbox | flex: 1 0 0 http://www.w3.org/TR/css-flexbox-1/#flex-property 0da6362d3fb6a9e36acb4921b554a2df0f8c88d1 `Opera Software`<http://opera.com>
flexbox_flex-1-0-0-unitless reference/flexbox_flex-1-0-0-ref flexbox | flex: 1 0 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property b8add0ea7d08dae4f883f9fe0015674b6297cc36 `Opera Software`<http://opera.com>
flexbox_flex-1-0-auto reference/flexbox_flex-1-0-auto-ref flexbox | flex: 1 0 auto http://www.w3.org/TR/css-flexbox-1/#flex-property 1017b6a8f96ded4845c2bae952cfdbb08b2c306d `Opera Software`<http://opera.com>
flexbox_flex-1-0-auto-shrink reference/flexbox_flex-1-0-auto-shrink-ref flexbox | flex: 1 0 auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property cd0a59a7896e39010a0355bcee019dab2436ca64 `Opera Software`<http://opera.com>
flexbox_flex-1-0-N reference/flexbox_flex-1-0-N-ref flexbox | flex: 1 0 N http://www.w3.org/TR/css-flexbox-1/#flex-property 4cfded08537e887b996952db4f953607c2bab7fc `Opera Software`<http://opera.com>
flexbox_flex-1-0-N-shrink reference/flexbox_flex-1-0-N-shrink-ref flexbox | flex: 1 0 N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 004c49f92f20a378c5907fa3e625add77b574720 `Opera Software`<http://opera.com>
flexbox_flex-1-0-Npercent reference/flexbox_flex-1-0-Npercent-ref flexbox | flex: 1 0 N% http://www.w3.org/TR/css-flexbox-1/#flex-property 3bb6296cfc1757866ff72c8e1c8bb6c9c5e093bc `Opera Software`<http://opera.com>
flexbox_flex-1-0-Npercent-shrink reference/flexbox_flex-1-0-Npercent-shrink-ref flexbox | flex: 1 0 N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 581bb4f33f1f0a82a56299b93ed603c547a1a18f `Opera Software`<http://opera.com>
flexbox_flex-1-1 reference/flexbox_flex-1-1-0-ref flexbox | flex: 1 1 http://www.w3.org/TR/css-flexbox-1/#flex-property 3ed6e5c7ed2852e0c0c12c10ac0c156897a9a014 `Opera Software`<http://opera.com>
flexbox_flex-1-1-0 reference/flexbox_flex-1-1-0-ref flexbox | flex: 1 1 0 http://www.w3.org/TR/css-flexbox-1/#flex-property 4932392f16c66b3b054cae8ffb67c2b5557622c6 `Opera Software`<http://opera.com>
flexbox_flex-1-1-0-unitless reference/flexbox_flex-1-1-0-ref flexbox | flex: 1 1 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property 594ac0b8e508bcf4ce29d5698f6ca70b5904f384 `Opera Software`<http://opera.com>
flexbox_flex-1-1-auto reference/flexbox_flex-1-1-auto-ref flexbox | flex: 1 1 auto http://www.w3.org/TR/css-flexbox-1/#flex-property 7343f75d4bb53facca625208ad70459245812ded `Opera Software`<http://opera.com>
flexbox_flex-1-1-auto-shrink reference/flexbox_flex-1-1-auto-shrink-ref flexbox | flex: 1 1 auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 4b94ba864da7ae6800f4a377e4345f34358e6d5c `Opera Software`<http://opera.com>
flexbox_flex-1-1-N reference/flexbox_flex-1-1-N-ref flexbox | flex: 1 1 N http://www.w3.org/TR/css-flexbox-1/#flex-property 0668082c60d788fbc5ff94e2b4c3c4366d6d6593 `Opera Software`<http://opera.com>
flexbox_flex-1-1-N-shrink reference/flexbox_flex-1-1-N-shrink-ref flexbox | flex: 1 1 N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property a403bcb69a2daed928fd73630163c0d787de3d5e `Opera Software`<http://opera.com>
flexbox_flex-1-1-Npercent reference/flexbox_flex-1-1-Npercent-ref flexbox | flex: 1 1 N% http://www.w3.org/TR/css-flexbox-1/#flex-property 37f2ada450b3a5831b4c5396b1fc2b21e67fd3dc `Opera Software`<http://opera.com>
flexbox_flex-1-1-Npercent-shrink reference/flexbox_flex-1-1-Npercent-shrink-ref flexbox | flex: 1 1 N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 0a25bf3576ca0a291e169d58db4110ed6e9590a0 `Opera Software`<http://opera.com>
flexbox_flex-1-N reference/flexbox_flex-1-N-0-ref flexbox | flex: 1 N http://www.w3.org/TR/css-flexbox-1/#flex-property 3540345c63ee61cfb156725bccbb21dbf323774a `Opera Software`<http://opera.com>
flexbox_flex-1-N-0 reference/flexbox_flex-1-N-0-ref flexbox | flex: 1 N 0 http://www.w3.org/TR/css-flexbox-1/#flex-property 786359a1e803b2a2a49c3ce03aae34ac4f3ab434 `Opera Software`<http://opera.com>
flexbox_flex-1-N-0-unitless reference/flexbox_flex-1-N-0-ref flexbox | flex: 1 N 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property b2e4e7addd1c6371483a9908228cd3678f7aa781 `Opera Software`<http://opera.com>
flexbox_flex-1-N-auto reference/flexbox_flex-1-N-auto-ref flexbox | flex: 1 N auto http://www.w3.org/TR/css-flexbox-1/#flex-property 14222fc2cf4036a66c81cce11b823dbf527c6d49 `Opera Software`<http://opera.com>
flexbox_flex-1-N-auto-shrink reference/flexbox_flex-1-N-auto-shrink-ref flexbox | flex: 1 N auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property ecea8a20496cd13f7c0991a487d5dcf52ef8affd `Opera Software`<http://opera.com>
flexbox_flex-1-N-N reference/flexbox_flex-1-N-N-ref flexbox | flex: 1 N N http://www.w3.org/TR/css-flexbox-1/#flex-property 59bf3b49f90b0784df37d60cf449898d9b940a04 `Opera Software`<http://opera.com>
flexbox_flex-1-N-N-shrink reference/flexbox_flex-1-N-N-shrink-ref flexbox | flex: 1 N N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 7a2b911f8d693cd1deecc6fe83187aca2e1205f6 `Opera Software`<http://opera.com>
flexbox_flex-1-N-Npercent reference/flexbox_flex-1-N-Npercent-ref flexbox | flex: 1 N N% http://www.w3.org/TR/css-flexbox-1/#flex-property 97dcb7a154590ee924c2fab108711f7142d5f91c `Opera Software`<http://opera.com>
flexbox_flex-1-N-Npercent-shrink reference/flexbox_flex-1-N-Npercent-shrink-ref flexbox | flex: 1 N N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 9b833c4cc92e4a670a5c79d8f2e927cae3f13a9b `Opera Software`<http://opera.com>
flexbox_flex-auto reference/flexbox_flex-auto-ref flexbox | flex: auto http://www.w3.org/TR/css-flexbox-1/#flex-common cb7dffa204ac2366628e19623085fc987d0df43b `Opera Software`<http://opera.com>
flexbox_flex-basis reference/flexbox_flex-basis-ref flexbox | flex-basis: percentage http://www.w3.org/TR/css-flexbox-1/#flex-basis-property c48a6e141ed3ee02e7bb94e691d7ae8a4e54bca0 `Opera Software`<http://opera.com>
flexbox_flex-basis-shrink reference/flexbox_flex-basis-shrink-ref flexbox | flex-basis: percentage, flex-shrink: +integer http://www.w3.org/TR/css-flexbox-1/#flex-basis-property ee8776dd7b5aacbd96f17061eb2bfeb2052a570e `Opera Software`<http://opera.com>
flexbox_flex-formatting-interop reference/flexbox_flex-formatting-interop-ref flexbox | flex formatting context :: negative margins and border box http://www.w3.org/TR/css-flexbox-1/#flex-containers 6e0a157cae1cba8ae88023e2fe2aeeb7f146380d `Opera Software`<http://opera.com>
flexbox_flex-initial reference/flexbox_flex-initial-ref flexbox | flex: initial http://www.w3.org/TR/css-flexbox-1/#flex-common c01df6367570a66c188861fe8ee19bfd122306aa `Opera Software`<http://opera.com>
flexbox_flex-initial-2 reference/flexbox_flex-initial-2-ref flexbox | flex: initial http://www.w3.org/TR/css-flexbox-1/#flex-common 5781b06322897c0589a88c814d0c26786bb1866c `Opera Software`<http://opera.com>
flexbox_flex-N-0 reference/flexbox_flex-N-0-0-ref flexbox | flex: N 0 http://www.w3.org/TR/css-flexbox-1/#flex-property 54a8c6a89285e4ff75ce0533a8bbac051f58873c `Opera Software`<http://opera.com>
flexbox_flex-N-0-0 reference/flexbox_flex-N-0-0-ref flexbox | flex: N 0 0 http://www.w3.org/TR/css-flexbox-1/#flex-property b7f381282f39c267c378fae78942b1060b241a67 `Opera Software`<http://opera.com>
flexbox_flex-N-0-0-unitless reference/flexbox_flex-N-0-0-ref flexbox | flex: N 0 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property 42105a3851733e8818a9175ed9508c63b4ab8849 `Opera Software`<http://opera.com>
flexbox_flex-N-0-auto reference/flexbox_flex-N-0-auto-ref flexbox | flex: N 0 auto http://www.w3.org/TR/css-flexbox-1/#flex-property d0cdacc49f1b232521d1cb6f5dbbbefd4f52d98b `Opera Software`<http://opera.com>
flexbox_flex-N-0-auto-shrink reference/flexbox_flex-N-0-auto-shrink-ref flexbox | flex: N 0 auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property f2bcad84c5a4aff8b681b8159e0392771dce1e81 `Opera Software`<http://opera.com>
flexbox_flex-N-0-N reference/flexbox_flex-N-0-N-ref flexbox | flex: N 0 N http://www.w3.org/TR/css-flexbox-1/#flex-property d7132fa9ccc3c8f551d6003e68adcf5d8d49f4f7 `Opera Software`<http://opera.com>
flexbox_flex-N-0-N-shrink reference/flexbox_flex-N-0-N-shrink-ref flexbox | flex: N 0 N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 7ba4aa0df7250a9416bb54bc5e6f31561b9499f9 `Opera Software`<http://opera.com>
flexbox_flex-N-0-Npercent reference/flexbox_flex-N-0-Npercent-ref flexbox | flex: N 0 N% http://www.w3.org/TR/css-flexbox-1/#flex-property e062010051e70cf1ca4971e6b49bd28948ccc6aa `Opera Software`<http://opera.com>
flexbox_flex-N-0-Npercent-shrink reference/flexbox_flex-N-0-Npercent-shrink-ref flexbox | flex: N 0 N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property e7eba400f5a9ef217531ee50725a56a5ed6bc21e `Opera Software`<http://opera.com>
flexbox_flex-N-1 reference/flexbox_flex-N-1-0-ref flexbox | flex: N 1 http://www.w3.org/TR/css-flexbox-1/#flex-property 9485844a3cf9c1e8a5b0ffd57c6996ef55bc0c7f `Opera Software`<http://opera.com>
flexbox_flex-N-1-0 reference/flexbox_flex-N-1-0-ref flexbox | flex: N 1 0 http://www.w3.org/TR/css-flexbox-1/#flex-property 1a6e1de844205f437d19f1806b216eef89de2251 `Opera Software`<http://opera.com>
flexbox_flex-N-1-0-unitless reference/flexbox_flex-N-1-0-ref flexbox | flex: N 1 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property 171caf14b7ff6de035dbce2ad48a79ea40d7c557 `Opera Software`<http://opera.com>
flexbox_flex-N-1-auto reference/flexbox_flex-N-1-auto-ref flexbox | flex: N 1 auto http://www.w3.org/TR/css-flexbox-1/#flex-property c12e77e475035c937ec7a23a193a205d389ae18f `Opera Software`<http://opera.com>
flexbox_flex-N-1-auto-shrink reference/flexbox_flex-N-1-auto-shrink-ref flexbox | flex: N 1 auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property c9662d8b43ee876d4b4b15989f31e07cd2fe5e5c `Opera Software`<http://opera.com>
flexbox_flex-N-1-N reference/flexbox_flex-N-1-N-ref flexbox | flex: N 1 N http://www.w3.org/TR/css-flexbox-1/#flex-property fed1a15ecd8c8d3fe67864a42317a53831a96d7b `Opera Software`<http://opera.com>
flexbox_flex-N-1-N-shrink reference/flexbox_flex-N-1-N-shrink-ref flexbox | flex: N 1 N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 7c264caf80dc76952d1a357c03fc21b6e08cb5ff `Opera Software`<http://opera.com>
flexbox_flex-N-1-Npercent reference/flexbox_flex-N-1-Npercent-ref flexbox | flex: N 1 N% http://www.w3.org/TR/css-flexbox-1/#flex-property 86472dbb028ee99d09bd164b89e9e4bd60277249 `Opera Software`<http://opera.com>
flexbox_flex-N-1-Npercent-shrink reference/flexbox_flex-N-1-Npercent-shrink-ref flexbox | flex: N 1 N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property e9801db1cde772faa0d7a4333b251341ff689434 `Opera Software`<http://opera.com>
flexbox_flex-N-N reference/flexbox_flex-N-N-0-ref flexbox | flex: N N http://www.w3.org/TR/css-flexbox-1/#flex-property b400af423bbc4e3e9d22865b0a53b6efa47bc305 `Opera Software`<http://opera.com>
flexbox_flex-N-N-0 reference/flexbox_flex-N-N-0-ref flexbox | flex: N N 0 http://www.w3.org/TR/css-flexbox-1/#flex-property b6de38e250953a120df40d8415260746c3e00565 `Opera Software`<http://opera.com>
flexbox_flex-N-N-0-unitless reference/flexbox_flex-N-N-0-ref flexbox | flex: N N 0 unitless http://www.w3.org/TR/css-flexbox-1/#flex-property c04afcf615baec80fb3d99a7f46e20e074e30dc0 `Opera Software`<http://opera.com>
flexbox_flex-N-N-auto reference/flexbox_flex-N-N-auto-ref flexbox | flex: N N auto http://www.w3.org/TR/css-flexbox-1/#flex-property 7d551cf43ee0be5c4e8cf8dad9b87fe2217b95a9 `Opera Software`<http://opera.com>
flexbox_flex-N-N-auto-shrink reference/flexbox_flex-N-N-auto-shrink-ref flexbox | flex: N N auto | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 1763598bcca65bab8acf445b359b27ce5f901d4c `Opera Software`<http://opera.com>
flexbox_flex-N-N-N reference/flexbox_flex-N-N-N-ref flexbox | flex: N N N http://www.w3.org/TR/css-flexbox-1/#flex-property 53838788e234eaa2bb2aae9087c05e87565a6a67 `Opera Software`<http://opera.com>
flexbox_flex-N-N-N-shrink reference/flexbox_flex-N-N-N-shrink-ref flexbox | flex: N N N | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property 1a23fbd0e4334e05cfcc6c6e5898fd4dc948cc99 `Opera Software`<http://opera.com>
flexbox_flex-N-N-Npercent reference/flexbox_flex-N-N-Npercent-ref flexbox | flex: N N N% http://www.w3.org/TR/css-flexbox-1/#flex-property 55370cf53d392e1d6e5366b832d7fe146b1282f7 `Opera Software`<http://opera.com>
flexbox_flex-N-N-Npercent-shrink reference/flexbox_flex-N-N-Npercent-shrink-ref flexbox | flex: N N N% | shrinking http://www.w3.org/TR/css-flexbox-1/#flex-property f7fea5157a2d5d44e69ab1083598d8323c6fdfa4 `Opera Software`<http://opera.com>
flexbox_flex-natural reference/flexbox_flex-natural-ref flexbox | flex: larger integer http://www.w3.org/TR/css-flexbox-1/#flex-common e5f2206a3e7bde2995ea9a2712e0395618cec2f9 `Opera Software`<http://opera.com>
flexbox_flex-natural-mixed-basis reference/flexbox_flex-natural-mixed-basis-ref flexbox | flex: larger integer, mixed basis http://www.w3.org/TR/css-flexbox-1/#flex-basis-property aa956d1c13675e5b4872c65d15cb2eec96eb3d8e `Opera Software`<http://opera.com>
flexbox_flex-natural-mixed-basis-auto reference/flexbox_flex-natural-mixed-basis-auto-ref flexbox | flex: larger integer, mixed basis, auto http://www.w3.org/TR/css-flexbox-1/#flex-basis-property d51d054019bba36ae31354936ec17b47fe0e90f1 `Opera Software`<http://opera.com>
flexbox_flex-natural-variable-auto-basis reference/flexbox_flex-natural-variable-auto-basis-ref flexbox | flex: larger integer, auto basis http://www.w3.org/TR/css-flexbox-1/#flex-basis-property 7755aa9d0584d1d4ecc9f25559916eabde034e06 `Opera Software`<http://opera.com>
flexbox_flex-natural-variable-zero-basis reference/flexbox_flex-natural-variable-zero-basis-ref flexbox | flex: larger integer, zero basis http://www.w3.org/TR/css-flexbox-1/#propdef-flex-basis 4ba06ffb647768427b03ff4236cd122499ed14d6 `Opera Software`<http://opera.com>
flexbox_flex-none reference/flexbox_flex-none-ref flexbox | flex: none http://www.w3.org/TR/css-flexbox-1/#flex-common 2b468b57f1ba7761b333d2fea4637ad94516f3a4 `Opera Software`<http://opera.com>
flexbox_flow-column-reverse-wrap reference/flexbox_flow-column-reverse-wrap-ref flexbox | flex-flow: column-reverse wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow e4f723d93472a1e2a6b35a49a7a8685386a21c76 `Opera Software`<http://opera.com>
flexbox_flow-column-reverse-wrap-reverse reference/flexbox_flow-column-reverse-wrap-reverse-ref flexbox | flex-flow: column-reverse wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 3a1a52875ef249cd04f453e8c25f23b17f6d1a4e `Opera Software`<http://opera.com>
flexbox_flow-column-wrap reference/flexbox_flow-column-wrap-ref flexbox | flex-flow: column wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 67f44302f69c21221299dd64b0ee8d03eb88bcc0 `Opera Software`<http://opera.com>
flexbox_flow-column-wrap-reverse reference/flexbox_flow-column-wrap-reverse-ref flexbox | flex-flow: column wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow ab8eb23c3fb0f46586188fdbc98f96b6dab15165 `Opera Software`<http://opera.com>
flexbox_flow-row-wrap reference/flexbox_flow-row-wrap-ref flexbox | flex-flow: row wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow 4339f96b8767fb59553404d641bf1a7a899f299b `Opera Software`<http://opera.com>
flexbox_flow-row-wrap-reverse reference/flexbox_flow-row-wrap-reverse-ref flexbox | flex-flow: row wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow b28edd15c50b0467f0c2e32dc703261e81d690c2 `Opera Software`<http://opera.com>
flexbox_generated reference/flexbox_generated-ref flexbox | flexcontainer vs generated content http://www.w3.org/TR/css-flexbox-1/#flex-container 4570a214569e4838440ab3272b9ccd40a8bf26cb `Opera Software`<http://opera.com>
flexbox_generated-flex reference/flexbox_generated-flex-ref flexbox | flexcontainer via generated content http://www.w3.org/TR/css-flexbox-1/#flex-container 9757b85f200e0b9db067b1fd57c55500bd2c4114 `Opera Software`<http://opera.com>
flexbox_generated-nested-flex reference/flexbox_generated-flex-ref flexbox | flexcontainer via generated content http://www.w3.org/TR/css-flexbox-1/#flex-container 923485dbc0a175039a27e86323be636703775ab1 `Opera Software`<http://opera.com>
flexbox_inline reference/flexbox_inline-ref flexbox | inline http://www.w3.org/TR/css-flexbox-1/#flex-containers 447bdde9aed536a2bcc81a5dd78c8069f4836aa6 `Opera Software`<http://opera.com>
flexbox_inline-abspos reference/flexbox_empty-ref flexbox | absolutely positioned inline http://www.w3.org/TR/css-flexbox-1/#abspos-items 61d5bf3e1a0aedb003f2352ad445399af9fc7371 `Opera Software`<http://opera.com>
flexbox_inline-float reference/flexbox_empty-ref flexbox | floated inline http://www.w3.org/TR/css-flexbox-1/#flex-items d1f84583d42d59b3af5283cf57f99e4732bf5bb2 `Opera Software`<http://opera.com>
flexbox_interactive_break-after-column-item flexbox | break-after, column, item interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 304642956721c92e5c66aab76e24c48ed7a7ac8e `Opera Software`<http://opera.com>
flexbox_interactive_break-after-column-lastitem flexbox | break-after, column, item interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 65d96b6685672dcb6fd9907b61ba0b0a3aa3ec48 `Opera Software`<http://opera.com>
flexbox_interactive_break-after-container flexbox | break-after, singleline, container interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 82dab3bd0c7f4924509ff4aa10a8150e6efeeea3 `Opera Software`<http://opera.com>
flexbox_interactive_break-after-item flexbox | break-after, singleline, item interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 54d08c8f381a9927305669118557f7d7869cff00 `Opera Software`<http://opera.com>
flexbox_interactive_break-after-line flexbox | break-after, line interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 2c34be8807d4fc0b1eb9bbf8d23bcb473fa6f257 `Opera Software`<http://opera.com>
flexbox_interactive_break-after-line-order flexbox | order, break-after, multiline interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination fe8b7932b1d3ebd87aa962504098e04fe5fb680b `Opera Software`<http://opera.com>
flexbox_interactive_break-after-multiline flexbox | break-after, multiline interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 45862a4976955823caba41dbbc8a7e60a04bf85c `Opera Software`<http://opera.com>
flexbox_interactive_break-before-column-firstitem flexbox | break-before, column, item interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 871a582c33863ac45cfae148038d31bdf5553dc4 `Opera Software`<http://opera.com>
flexbox_interactive_break-before-column-item flexbox | break-before, column, item interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination e9a5ff71057107022bf92650cf0ed8172403ac0a `Opera Software`<http://opera.com>
flexbox_interactive_break-before-container flexbox | break-before, singleline, container interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 239498c520095cec14d60797ea8d7e9a35543f08 `Opera Software`<http://opera.com>
flexbox_interactive_break-before-item flexbox | break-before, singleline, item interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 435666423a8c83d3ee5dca774520415502bf56ac `Opera Software`<http://opera.com>
flexbox_interactive_break-before-multiline flexbox | break-before, multiline interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination c96b1f8acd4bf7face8ef803ee75e620a13b5f5a `Opera Software`<http://opera.com>
flexbox_interactive_break-natural flexbox | natural breaks interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination 95b728c56f73995c8ee9faf697a0f92d373361e4 `Opera Software`<http://opera.com>
flexbox_interactive_flex-basis-transitions flexbox | transitioned flex-basis interact http://www.w3.org/TR/css-flexbox-1/#flex-basis-property 0b59632675e0edf79dbd624d20cb12d4f6f0b92a `Opera Software`<http://opera.com>
flexbox_interactive_flex-grow-transitions flexbox | transitioned flex-grow interact http://www.w3.org/TR/css-flexbox-1/#propdef-flex-grow 5950cd52081f211958007b5fb2f4c08b7d988897 `Opera Software`<http://opera.com>
flexbox_interactive_flex-shrink-transitions flexbox | transitioned flex-shrink interact http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink 8cbe77a73578c25c4d74979c1ecac99ead4ce1b3 `Opera Software`<http://opera.com>
flexbox_interactive_flex-shrink-transitions-invalid flexbox | invalid flex-shrink transition interact http://www.w3.org/TR/css-flexbox-1/#propdef-flex-shrink 029b94fb0009fd56112dbbb9c479c2de6546bbec `Opera Software`<http://opera.com>
flexbox_interactive_flex-transitions flexbox | transitioned flex interact http://www.w3.org/TR/css-flexbox-1/#flex-property 98c05b6bd6b338a038c5362093cf6e7d7020d487 `Opera Software`<http://opera.com>
flexbox_interactive_order-transitions flexbox | flex-flow and transitioned order interact http://www.w3.org/TR/css-flexbox-1/#flex-property 214780c7dc0f1b75783e2473df974242cf33b27b `Opera Software`<http://opera.com>
flexbox_interactive_order-transitions-2 flexbox | transitioned order interact http://www.w3.org/TR/css-flexbox-1/#flex-property 62248d50bcde1015eda4ca16427e1abbc9c9cfbd `Opera Software`<http://opera.com>
flexbox_interactive_paged-overflow flexbox | @page and paged overflow interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination ca50e5fbf668c9ad96785c216f2bc48bee60817a `Opera Software`<http://opera.com>
flexbox_interactive_paged-overflow-2 flexbox | paged overflow interact,paged http://www.w3.org/TR/css-flexbox-1/#pagination e576d963d8ace2457367d31dd0fed5a4114263c5 `Opera Software`<http://opera.com>
flexbox_item-bottom-float reference/flexbox_item-bottom-float-ref flexbox | GCPM bottom float http://www.w3.org/TR/css-flexbox-1/#flex-property 22e933046eec25d816d28599a9ddea7b4fc77f80 `Opera Software`<http://opera.com>
flexbox_item-clear reference/flexbox_item-clear-ref flexbox | cleared item http://www.w3.org/TR/css-flexbox-1/#flex-containers e6922f27945b356a00ceddff48e903f98003dfc1 `Opera Software`<http://opera.com>
flexbox_item-float reference/flexbox_item-float-ref flexbox | floated item http://www.w3.org/TR/css-flexbox-1/#flex-containers d31c1c1d2fd199b5ebd893a41743b609f447aafb `Opera Software`<http://opera.com>
flexbox_item-top-float reference/flexbox_item-top-float-ref flexbox | floated item http://www.w3.org/TR/css-flexbox-1/#flex-property 66a1696ea03793dc3b4f2e83d16d5cebd4c03043 `Opera Software`<http://opera.com>
flexbox_item-vertical-align reference/flexbox_item-vertical-align-ref flexbox | vertical-align http://www.w3.org/TR/css-flexbox-1/#flex-containers 9f7f65b6d5c2f7db187c868a19cdd6f43c7a76e0 `Opera Software`<http://opera.com>
flexbox_justifycontent-center reference/flexbox_justifycontent-center-ref flexbox | justify-content: center http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 85f72a2bced67083599dee04a8289b965f9b47fb `Opera Software`<http://opera.com>
flexbox_justifycontent-center-overflow reference/flexbox_justifycontent-center-overflow-ref flexbox | justify-content: center / overflow http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content ba28eb71271b25875950d1e0b3c8c284bd96a1a8 `Opera Software`<http://opera.com>
flexbox_justifycontent-flex-end reference/flexbox_justifycontent-flex-end-ref flexbox | justify-content: flex-end http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 34076d6bd39f80d59b5172360d3ccf221ccd58fa `Opera Software`<http://opera.com>
flexbox_justifycontent-flex-start reference/flexbox_justifycontent-flex-start-ref flexbox | justify-content: flex-start http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content b52111f2c139731338587830dc70e6ab461d0254 `Opera Software`<http://opera.com>
flexbox_justifycontent-spacearound reference/flexbox_justifycontent-spacearound-ref flexbox | justify-content: space-around http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content eb7020c85649762eb4e5d8a7dffdec8d6ea02ac7 `Opera Software`<http://opera.com>
flexbox_justifycontent-spacearound-negative reference/flexbox_justifycontent-spacearound-negative-ref flexbox | justify-content: space-around / negative http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 203f226bc6afc7cc3bfe350b3ff3a0bb30b4265b `Opera Software`<http://opera.com>
flexbox_justifycontent-spacearound-only reference/flexbox_justifycontent-spacearound-only-ref flexbox | justify-content: space-around | single item http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 4afd4f4f5ce29214ce356232e179bdaf6c61ef15 `Opera Software`<http://opera.com>
flexbox_justifycontent-spacebetween reference/flexbox_justifycontent-spacebetween-ref flexbox | justify-content: space-between http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 790f5ca49247275ae96337c8531e68b69198dd98 `Opera Software`<http://opera.com>
flexbox_justifycontent-spacebetween-negative reference/flexbox_justifycontent-spacebetween-negative-ref flexbox | justify-content: space-between / negative http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 6f05ec51b2a0e8b9423cd0a3aac892cb43556afe `Opera Software`<http://opera.com>
flexbox_justifycontent-spacebetween-only reference/flexbox_justifycontent-spacebetween-only-ref flexbox | justify-content: space-between | single item http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 65e5fd01457673dc2258165b34a51580ad9df99b `Opera Software`<http://opera.com>
flexbox_margin reference/flexbox_margin-ref flexbox | margins http://www.w3.org/TR/css-flexbox-1/#flex-containers 395613182985eb36a7ff9c6774ca9ff0d4113660 `Opera Software`<http://opera.com>
flexbox_margin-auto reference/flexbox_margin-auto-ref flexbox | margin: auto http://www.w3.org/TR/css-flexbox-1/#auto-margins 5521b0c98d91809a0b1a73fd45a895585bce054d `Opera Software`<http://opera.com>
flexbox_margin-auto-overflow reference/flexbox_margin-auto-overflow-ref flexbox | margin: auto in overflow http://www.w3.org/TR/css-flexbox-1/#auto-margins 6f2a82f574c6bb669cb11b2531b947c0821a9e12 `Opera Software`<http://opera.com>
flexbox_margin-auto-overflow-2 reference/flexbox_margin-auto-overflow-2-ref flexbox | margin: auto in overflow http://www.w3.org/TR/css-flexbox-1/#auto-margins 4254fbcce87139219739456302d94f8d2bd72768 `Opera Software`<http://opera.com>
flexbox_margin-collapse reference/flexbox_margin-collapse-ref flexbox | flexitem margin collapsing http://www.w3.org/TR/css-flexbox-1/#visibility-collapse 6aa64150b93c317b76e5a43a41b62ca3c833b912 `Opera Software`<http://opera.com>
flexbox_margin-left-ex reference/flexbox_margin-left-ex-ref flexbox | margin-left: auto http://www.w3.org/TR/css-flexbox-1/#item-margins a722372e89428c63ff1b99c432a679db1301041e `Opera Software`<http://opera.com>
flexbox_nested-flex reference/flexbox_generated-flex-ref flexbox | nested flexcontainer http://www.w3.org/TR/css-flexbox-1/#flex-containers de7cef3ac7399c36bde0844a90755fafb9ae75a5 `Opera Software`<http://opera.com>
flexbox_object reference/flexbox_object-ref flexbox | object fallback as a flex item http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 5b8622fb8a69aa78e7cb37ccaa7af3be17c742cb `Opera Software`<http://opera.com>
flexbox_order reference/flexbox_order-ref flexbox | flex-flow: column-reverse wrap-reverse; order http://www.w3.org/TR/css-flexbox-1/#propdef-order d345977eb697f0d70940b814f7aa1414434b9722 `Opera Software`<http://opera.com>
flexbox_order-abspos-space-around reference/flexbox_order-abspos-space-around-ref flexbox | order; justify-content: space-around http://www.w3.org/TR/css-flexbox-1/#propdef-order bd6d487a106559771331579297b95acbfb6a8577 `Opera Software`<http://opera.com>
flexbox_order-box reference/flexbox_order-box-ref flexbox | flex-flow: column-reverse wrap-reverse; order http://www.w3.org/TR/css-flexbox-1/#propdef-order 47ed809b00402ab4408062ec191e53f6da3e9f97 `Opera Software`<http://opera.com>
flexbox_order-noninteger-invalid reference/flexbox_empty-ref flexbox | flex-flow: column-reverse wrap-reverse; order http://www.w3.org/TR/css-flexbox-1/#propdef-order cb761f3308f054a7cd5d1ec75954abcfe5e486d6 `Opera Software`<http://opera.com>
flexbox_rowspan reference/flexbox_rowspan-ref flexbox | flexcontainers in cells with rowspan http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap cbdc9b8fb06e07f2dbda75a6040b7f72af6d2d39 `Opera Software`<http://opera.com>
flexbox_rowspan-overflow reference/flexbox_rowspan-ref flexbox | flexcontainers in cells with rowspan http://www.w3.org/TR/css-flexbox-1/#flex-property e890f105eb21884b8e6cf2ec49631885b6e0b19a `Opera Software`<http://opera.com>
flexbox_rowspan-overflow-automatic reference/flexbox_rowspan-ref flexbox | flexcontainers in cells with rowspan http://www.w3.org/TR/css-flexbox-1/#flex-property fc0765593c796aadb31bf2941c832e30abd3b3f4 `Opera Software`<http://opera.com>
flexbox_rtl-direction reference/flexbox_rtl-direction-ref flexbox | flex-direction: column-reverse | rtl http://www.w3.org/TR/css-flexbox-1/#flex-direction,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column-reverse 0c040b5e2e2ab9b79d1b20be0b2cf01c5929ae15 `Opera Software`<http://opera.com>
flexbox_rtl-flow reference/flexbox_rtl-flow-ref flexbox | flex-flow: column wrap | rtl http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap df3787b159e0abba17c8e09947da4366e176f70c `Opera Software`<http://opera.com>
flexbox_rtl-flow-reverse reference/flexbox_rtl-flow-reverse-ref flexbox | flex-flow: column wrap-reverse | rtl http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap-reverse 97d6975321ffae724dcbf842e2c45ce755988d01 `Opera Software`<http://opera.com>
flexbox_rtl-order reference/flexbox_rtl-order-ref flexbox | flex-flow: column-reverse wrap-reverse; order | rtl http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column-reverse,http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap-reverse 4090c6d3a340952217f101b03d8ad2f93f9acfe4 `Opera Software`<http://opera.com>
flexbox_stf-abspos reference/flexbox_empty-ref flexbox | flexcontainer versus stf :: abspos http://www.w3.org/TR/css-flexbox-1/#flex-items aff1f446de82f6153b26b2354654620a63fa2158 `Opera Software`<http://opera.com>
flexbox_stf-fixpos flexbox | flexcontainer versus stf :: fixed http://www.w3.org/TR/css-flexbox-1/#flex-items 46d182c2e9d5ce46b95479408c35a8f50511b897 `Opera Software`<http://opera.com>
flexbox_stf-float reference/flexbox_empty-ref flexbox | flexcontainer versus stf :: float http://www.w3.org/TR/css-flexbox-1/#flex-items d460ffe311c151715351cebf465fe55f5b797536 `Opera Software`<http://opera.com>
flexbox_stf-inline-block reference/flexbox_empty-ref flexbox | flexcontainer versus stf :: inline-block http://www.w3.org/TR/css-flexbox-1/#flex-items a3e2bad63b8c3a1df6d05d782d174d54d7492fb0 `Opera Software`<http://opera.com>
flexbox_stf-table reference/flexbox_empty-ref flexbox | flexcontainer versus stf :: table http://www.w3.org/TR/css-flexbox-1/#flex-items 2ec338ac02f13ef68373b8209ad8479d55316c5a `Opera Software`<http://opera.com>
flexbox_stf-table-caption reference/flexbox_empty-ref flexbox | flexcontainer versus stf :: table-caption http://www.w3.org/TR/css-flexbox-1/#flex-items 876c18496863e412278bc2eb8566e5287fc95cdf `Opera Software`<http://opera.com>
flexbox_stf-table-cell reference/flexbox_empty-ref flexbox | flexcontainer versus stf :: table cell http://www.w3.org/TR/css-flexbox-1/#flex-items a4d136d94fe39350e981066b416071d516e2c62d `Opera Software`<http://opera.com>
flexbox_stf-table-row reference/flexbox_empty-ref flexbox | flexcontainer versus stf :: table row http://www.w3.org/TR/css-flexbox-1/#flex-items 46694f03fe0cedd0f1425e5178a99d9cec1a6196 `Opera Software`<http://opera.com>
flexbox_stf-table-row-group reference/flexbox_empty-ref flexbox | flexcontainer versus stf :: table row group http://www.w3.org/TR/css-flexbox-1/#flex-items afce220443e1464547c4a6c91b1868548644557a `Opera Software`<http://opera.com>
flexbox_stf-table-singleline reference/flexbox_stf-table-singleline-ref flexbox | singleline flexcontainer versus stf :: table http://www.w3.org/TR/css-flexbox-1/#flex-items 1a9c64a1738cb8799daa4d83aaf1813578987688 `Opera Software`<http://opera.com>
flexbox_stf-table-singleline-2 reference/flexbox_stf-table-singleline-ref flexbox | singleline flexcontainer versus stf :: table http://www.w3.org/TR/css-flexbox-1/#flex-items 6efe7cce394e3e7fc5f48b485df3ca3bef07ad05 `Opera Software`<http://opera.com>
flexbox_table-fixed-layout reference/flexbox_empty-ref flexbox | flexcontainers in tables http://www.w3.org/TR/css-flexbox-1/#flex-items 7eedea681ea117d880fcb4f73295f125942e9034 `Opera Software`<http://opera.com>
flexbox_visibility-collapse reference/flexbox_visibility-collapse-ref flexbox | visibility: collapse http://www.w3.org/TR/css-flexbox-1/#visibility-collapse ebd5212b72efc42fda270e6c11e70f664e37c0d3 `Opera Software`<http://opera.com>
flexbox_visibility-collapse-line-wrapping reference/flexbox_visibility-collapse-line-wrapping-ref flexbox | visibility: collapse and line wrapping http://www.w3.org/TR/css-flexbox-1/#visibility-collapse cdc89f83b4d48e51b216e749ff461b2ff4ee3072 `Opera Software`<http://opera.com>
flexbox_width-overflow reference/flexbox_empty-ref flexbox | overflow http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 1db0a2ff3d40ee724ef3e0bca628fe0d91235a29 `Opera Software`<http://opera.com>
flexbox_wrap reference/flexbox_wrap-ref flexbox | flex-wrap: wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 7db5c112d5eec4bd9f8ba96bcaf532ffc522689c `Opera Software`<http://opera.com>
flexbox_wrap-long reference/flexbox_wrap-long-ref flexbox | flex-wrap: wrap / long items http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap 822533ba3456a2cd31d24d1c9b8a495ff422319b `Opera Software`<http://opera.com>
flexbox_wrap-reverse reference/flexbox_wrap-reverse-ref flexbox | flex-wrap: wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap d9720447cf718c4c142a9f6ea012f0dd181283b1 `Opera Software`<http://opera.com>
flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom reference/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom-ref Align content flex-start with writing mode vertical-rl. http://www.w3.org/TR/css-flexbox-1/#flow-order 122ea1861a86ebca9024aad76c3b5e7c1c6791aa `Ryuichi Nonaka`<mailto:ryuichi1com@gmail.com> In vertical Japanese, for example, a row flexbox lays out its contents from top to bottom.
flexible-box-float reference/flex-box-float-ref flexible box flex item float effect http://www.w3.org/TR/css-flexbox-1/#flex-containers 71056b40e8e41321e7463d829d634027549c42c8 `zhouli`<mailto:liz@oupeng.com> float has no effect on flex items
Flexible-order reference/Flexible-order-ref Change the value of 'order' property http://www.w3.org/TR/css-flexbox-1/#propdef-order 43e8211cceee46b4994b9116187a7b88ecc87c27 `KeynesQu`<mailto:keynesqu@sohu.com> The order of three should be blue-red-black
grid-inline-order-property-auto-placement-001 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 918e47a41ffe595541954cf93da712b43f445a5e `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-auto-placement-002 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 4edacd9b53d661e31bf2106e16952e5f1d5a4ae3 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-auto-placement-003 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property c477590482de8b6d0a47f65f0ee444e535dfe808 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-auto-placement-004 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property e4829929a72456f496b3cb51cfef0f7a513ca928 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-auto-placement-005 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 6ab305e5677478e990b3875efb5e88c2354f52c5 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-painting-001 reference/ref-filled-green-100px-square 'order' property affects grid items painting order within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 8ffdbe77f9ec84fa1d28a481ca9958225127e343 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-painting-002 reference/ref-filled-green-100px-square 'order' property affects grid items painting order within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 8e1bcca40185722abb35148fb4d9467e8a43afa8 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-painting-003 reference/ref-filled-green-100px-square 'order' property affects grid items painting order within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 428662d1fb50c8b0835852a7034fb4fbc1de65eb `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-painting-004 reference/ref-filled-green-100px-square 'order' property affects grid items painting order within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 184e84a61db0ad250924bc79d6d1e4273513e6b1 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-inline-order-property-painting-005 reference/ref-filled-green-100px-square 'order' property affects grid items painting order within an inline grid ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 317d9842590e58ae1bf875a6687da09490b78f70 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-auto-placement-001 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property ad5b4e57de7a4ea9fd826be7fca30d6700672fa1 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-auto-placement-002 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property d33459a775e8e493e29fe5cd454d1e20eb057f20 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-auto-placement-003 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property df0c2f2f87996d49e5e9310ee18daefe64011519 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-auto-placement-004 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 42cf26e259742411b423b6a40ef7984f3505f701 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-auto-placement-005 reference/grid-2x2-blue-yellow-lime-magenta 'order' property affects grid items auto-placement position ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 367195431744f6f660a7d2f5f633ad35f648911b `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-painting-001 reference/ref-filled-green-100px-square 'order' property affects grid items painting order ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 6fe958c5207dea977959e776d8b3c37ff90c9346 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-painting-002 reference/ref-filled-green-100px-square 'order' property affects grid items painting order ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property cd34b0f7008a6b8d165dc252aafa485a05aa901d `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-painting-003 reference/ref-filled-green-100px-square 'order' property affects grid items painting order ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property b40df807b6c337afb0cf8800d2a21bbbdf19c617 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-painting-004 reference/ref-filled-green-100px-square 'order' property affects grid items painting order ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property cf1be6293503225beeff4b6eb271c0691b41e5e8 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
grid-order-property-painting-005 reference/ref-filled-green-100px-square 'order' property affects grid items painting order ahem http://www.w3.org/TR/css-grid-1/#order-property,https://drafts.csswg.org/css-flexbox-1/#order-property 90442eabaebae006bd2f7dc1e5131ab76fc2fcc3 `Manuel Rego Casasnovas`<mailto:rego@igalia.com>
justify-content-001 reference/justify-content-001-ref A flex container with 'justify-content' property set to 'center' image http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content e103fe066163fdb6f14428ff0469211e802a5545 `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'justify-content: center' centers flex items in the main axis of each line.
justify-content-002 reference/justify-content-001-ref A flex container with the 'justify-content' property set to 'flex-start' image http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 26934eb3e05268678cb72c6d95a332f839ce096b `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'justify-content: flex-start' packs flex items toward the start of the main axis of each line.
justify-content-003 reference/justify-content-001-ref A flex container with the 'justify-content' property set to 'flex-end' image http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content cd35996b3ada0401475d8140423b42d4be15201e `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'justify-content: flex-end' packs flex items toward the end of the main axis of each line.
justify-content-004 reference/justify-content-001-ref A flex container with the 'justify-content' property set to 'space-between' image http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 77e91723b8f898c2fb2db46445b4f008ba8ac620 `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'justify-content: space-between' evenly distributes flex items in the main axis of each line.
justify-content-005 reference/justify-content-001-ref A flex container with the 'justify-content' property set to 'space-around' image http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 5a7ae2fc33ab0f0546741a1cc476f2c1e1d49043 `Microsoft`<http://www.microsoft.com/> This test checks that the flex container with 'justify-content: space-around' evenly distributes flex items in the main axis of each line, with half-size spaces on either end.
justify-content_center justify-content_center http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content eaf8ec015436a0b10ae221f99eb2d8611bc15333 `Intel`<http://www.intel.com> Check if the web engine can identify the justify-content value center.
justify-content_flex-end justify-content_flex-end http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content e391f329caed4a09eb625184036f20d2ed237f89 `Intel`<http://www.intel.com> Check if the web engine can indentify the justify-content value flex-end.
justify-content_flex-start justify-content_flex-start http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content b2d8a2db40369225f983831fe7e3764ae9bd7a1e `Intel`<http://www.intel.com> Check if the web engine can indentify the justify-content value flex-start.
justify-content_space-around justify-content_space-around http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 57a89c6dbe40a6e198eaa4ef06afbc6cfaa1c6ce `Intel`<http://www.intel.com> Check if the web engine can indentify the justy-content value space-around.
justify-content_space-between justify-content_space-between http://www.w3.org/TR/css-flexbox-1/#propdef-justify-content 272c283b96980803e385bd33b6eef2e145c63267 `Intel`<http://www.intel.com> Check if the web engine can indentify the justify-content value space-between.
multi-line-wrap-reverse-column-reverse reference/multi-line-wrap-reverse-column-reverse-ref flex container multiline wrapping-reverse in column-reverse direction. http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap,http://www.w3.org/TR/css-flexbox-1/#flex-direction-property cf5398c349ce875045d9a8f193db6b2c45057e3d `tmtysk`<mailto:tmtysk@gmail.com> This test check that a flex container reverse-wraps blocks multiline in column-reverse direction.
multi-line-wrap-reverse-row-reverse reference/multi-line-wrap-reverse-row-reverse-ref flex container multiline wrapping-reverse in row-reverse direction. http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap,http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 603856a322bbc0eaefcb6334b0a883e713d5def6 `tmtysk`<mailto:tmtysk@gmail.com> This test check that a flex container reverse-wraps blocks multiline in row-reverse direction.
multi-line-wrap-with-column-reverse reference/multi-line-wrap-with-column-reverse-ref flex container multiline wrapping in column-reverse direction http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap,http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 02ac708366bcef7fcae636d92dc00b0162aa859c `tmtysk`<mailto:tmtysk@gmail.com> This test check that a flex container wraps blocks multiline in column-reverse direction.
multi-line-wrap-with-row-reverse reference/multi-line-wrap-with-row-reverse-ref flex container multiline wrapping in row-reverse direction http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap,http://www.w3.org/TR/css-flexbox-1/#flex-direction-property c57b9d0f1fdda471b9c1a27f6fb6e34173938767 `tmtysk`<mailto:tmtysk@gmail.com> This test check that a flex container wraps blocks multiline in row-reverse direction.
order-001 The 'order' property on flex items set to a value of '-1' http://www.w3.org/TR/css-flexbox-1/#propdef-order 04b5480a5e5ed8d047c97faee2ca8d8d2e450ca5 `Microsoft`<http://www.microsoft.com/> This test checks that a flex container will lay out its content in the order specified by the ordinal groups.
order-with-column-reverse reference/order-with-column-reverse-ref flex container layout lowest order with column-reverse direction http://www.w3.org/TR/css-flexbox-1/#propdef-order 781edf3b64de42acf2ac3b923cf7d8ca515f0501 `tmtysk`<mailto:tmtysk@gmail.com> This test check that a flex container layouts out its content starting with the lowest numbered ordinal group and going up with column-reverse direction.
order-with-row-reverse reference/order-with-row-reverse-ref flex container layout lowest order with row-reverse direction http://www.w3.org/TR/css-flexbox-1/#propdef-order 379d0daab60067a9fb6157277ec463b4ac66a1f1 `tmtysk`<tmtysk@gmail.com> This test check that a flex container layouts out its content starting with the lowest numbered ordinal group and going up with row-reverse direction.
order_value order_check script http://www.w3.org/TR/css-flexbox-1/#propdef-order f5d773d782a1400c848d447eab95274ed8b8fbb2 `Intel`<http://www.intel.com> Check if the web engine can indentify order property.
percentage-heights-000 CSS Flexbox: Basic percentage heights dom,script https://drafts.csswg.org/css-flexbox-1/#main-sizing b3fad7d6cc3aa6c1ecd38948ff8982bbf9a23818 `Google`<https://www.google.com/> This test checks that percentage heights on a flex item correctly resolve against the container.
regions-flexbox-001 reference/regions-flexbox-001-ref CSS Regions: flowing flexbox elements in region http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#flex-containers 11164a17de38e44ba5a60371b8f6f0cde1d58870 `Catalin Badea`<mailto:badea@adobe.com> Test that flex containers are flowed inside a namedflow.
regions-flexbox-002 reference/regions-flexbox-001-ref CSS Regions: flowing auto-height flexbox elements in region ahem http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#flex-containers 085657533fd783d68375a66e9401f96e93de049c `Catalin Badea`<mailto:badea@adobe.com> Test that flex containers with auto height are flowed inside a namedflow.
regions-flexbox-003 reference/regions-flexbox-001-ref CSS Regions: fixed sized region inside a fixed sized flexbox ahem http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#flex-containers 0cf67ec244f3a6598c2673b28e0a0c5c0f5a786c `Catalin Badea`<mailto:badea@adobe.com> Test that content is flowed in a region placed inside a flexbox.
regions-flexbox-004 reference/regions-flexbox-002-ref CSS Regions: fixed sized region inside an auto height flexbox ahem http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#flex-containers b8519ba332fd51741c74188b94657d1b41e29608 `Catalin Badea`<mailto:badea@adobe.com> Test that content is flowed in a region placed inside a flexbox with auto-height.
row-flexbox-break reference/row-flexbox-break-ref CSS Regions: row flex container fragmentation ahem http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#layout-algorithm,http://www.w3.org/TR/css-flexbox-1/#pagination 62eca80457772bbcd6ef028a809740a4671aaece `Catalin Badea`<mailto:badea@adobe.com> Test checks that a flex container with row flow is split between regions.
ttwf-reftest-flex-align-content-center reference/ttwf-reftest-flex-align-content-center-ref align-content property - center http://www.w3.org/TR/css-flexbox-1/#align-content-property 70cf594ac3554827c881644aaa1d282400d9275f `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-align-content-end reference/ttwf-reftest-flex-align-content-end-ref align-content property - flex-end http://www.w3.org/TR/css-flexbox-1/#align-content-property e7b3fdf1d85f5ac349d8aad09401290e1f371359 `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-align-content-space-around reference/ttwf-reftest-flex-align-content-space-around-ref align-content property - space-around http://www.w3.org/TR/css-flexbox-1/#align-content-property 985fb0b70cedd2f698c42f3471dd6b93e9a0c4f4 `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-align-content-space-between reference/ttwf-reftest-flex-align-content-space-between-ref align-content property - space-between http://www.w3.org/TR/css-flexbox-1/#align-content-property 3913f63bb373edde072e12c44a2211830cd4f1d7 `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-align-content-start reference/ttwf-reftest-flex-align-content-start-ref align-content property - flex-start http://www.w3.org/TR/css-flexbox-1/#align-content-property d9579a3b26825e87897486a6e98d115d67e3e56e `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-base reference/ttwf-reftest-flex-base-ref display proprety - flex http://www.w3.org/TR/css-flexbox-1/#flex-containers 09cd8d806fdea0d80f53d47755e6142bc5949bad `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-direction-column reference/ttwf-reftest-flex-direction-column-ref flex-direction proprety - column http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 4fb556ba99b2f1c027f97ba7cd61285f5822873d `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-direction-column-reverse reference/ttwf-reftest-flex-direction-column-reverse-ref flex-direction proprety - column-reverse http://www.w3.org/TR/css-flexbox-1/#flex-direction-property d4a79bc50bd4e8a98814f8f98fc2ffeade38a506 `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-direction-row-reverse reference/ttwf-reftest-flex-direction-row-reverse-ref flex-direction proprety - row-reverse http://www.w3.org/TR/css-flexbox-1/#flex-direction-property 9098f8056ac9c5fc7f7633548358c81fedb3f8c8 `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-inline reference/ttwf-reftest-flex-inline-ref display proprety - inline-flex http://www.w3.org/TR/css-flexbox-1/#valdef-display-inline-flex d4bf7203c62b3ee71080538a8d5be9d6a7ad7ef7 `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-order reference/ttwf-reftest-flex-order-ref order proprety - value http://www.w3.org/TR/css-flexbox-1/#propdef-order 044ded9f226cb84a3c9732056aea49c46c181e2f `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-wrap reference/ttwf-reftest-flex-wrap-ref flex-wrap proprety - wrap http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap b9ad50ea90553808718283b2e4e996f313eb66a6 `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
ttwf-reftest-flex-wrap-reverse reference/ttwf-reftest-flex-wrap-reverse-ref flex-wrap proprety - wrap-reverse http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap b97229afe05307403b107d040c4667f3f2278ac5 `haosdent`<mailto:haosdent@gmail.com> Statement describing what the test case is asserting
visibility-collapse-001 A flex item with the 'visibility' property set to 'collapse' should not take up space in the main axis http://www.w3.org/TR/css-flexbox-1/#visibility-collapse e3a914d7e3c7ff2a5e898eaf67dff3041dda16fc `Microsoft`<http://www.microsoft.com/> This test checks that a flex item with 'visibility: collapse' doesn't take up space in the main axis.
visibility-collapse-002 A flex item with the 'visibility' property set to 'collapse' should be large enough to fit the collapsed item http://www.w3.org/TR/css-flexbox-1/#visibility-collapse 5ff47e24f82c9e30540d720b515ac83b74a767b9 `Microsoft`<http://www.microsoft.com/> This test checks that the cross size of a line of flex items containing an item with 'visbility: collapse' is large enough to fit the collapsed item.
visibility-regions-in-flexbox reference/visibility-regions-in-flexbox-ref CSS Regions: collapsed region flex items ahem http://www.w3.org/TR/css3-regions/#the-flow-into-property,http://www.w3.org/TR/css3-regions/#flow-from,http://www.w3.org/TR/css-flexbox-1/#visibility-collapse f928a7d12588030ca5a9e83b970ad9ff0a70a22c `Catalin Badea`<mailto:badea@adobe.com> Test checks that the flexbox collapsed property works on flex items that are regions. The collapsed region item should not contribute to the flex container's width.
|