no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / webkit-box / webkit-box-anon-flex-items-2-ref.html
blobd220271d56f15dda82ca60749dc40c47f11ee944
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>
5 Reference Case
6 </title>
7 <style>
8 .container {
9 display: flex;
10 justify-content: space-between;
11 width: 300px;
12 border: 1px solid black;
13 font: 10px sans-serif;
15 span {
16 background: lightgray;
18 </style>
19 </head>
20 <body>
21 <!-- We use an explicit div here, to match the anonymous div that the testcase
22 is expected to generate around contiguous runs of inline content. -->
23 <div class="container">
24 <div>
25 raw text
26 <span>start</span>
27 </div>
28 <div>BLOCK</div>
29 <div>
30 <span>end</span>
31 raw text
32 </div>
33 </div>
34 </body>
35 </html>