Bug 1874684 - Part 17: Fix uninitialised variable warnings from clang-tidy. r=allstarschh
[gecko.git] / layout / reftests / flexbox / flexbox-min-bsize-keywords-horiz-1-ref.html
blobeb79ba48c59d20bdc745790e95e920bfd765843a
1 <!DOCTYPE html>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html>
7 <head>
8 <title>CSS Reference Case</title>
9 <meta charset="utf-8">
10 <style>
11 .container {
12 display: flex;
13 flex-direction: row;
15 .container > * {
16 writing-mode: vertical-lr;
17 border: 1px solid black;
19 .itemA {
20 background: purple;
22 .itemB {
23 background: teal;
25 .itemC {
26 background: blue;
28 .itemD {
29 background: yellow;
31 </style>
32 </head>
33 <body>
34 <div class="container">
35 <div class="itemA">itemA</div>
36 <div class="itemB">itemB</div>
37 <div class="itemC">itemC</div>
38 <div class="itemD">itemD</div>
39 </div>
40 </body>
41 </html>