no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / webkit-box / webkit-box-anon-flex-items-3.html
blob9a355f1469e9897cf03a46803f0dfbcbd0d5ada9
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>
5 Test for whether whitespace gets wrapped in an anonymous box,
6 inside of -webkit-box.
7 </title>
8 <style>
9 .container {
10 display: -webkit-box;
11 -webkit-box-pack: justify;
12 width: 300px;
13 border: 1px solid black;
14 white-space: pre;
16 </style>
17 </head>
18 <body>
19 <!-- Note the space characters between the first and second divs here: -->
20 <div class="container"><div>a</div> <div>b</div><div>c</div></div>
21 </body>
22 </html>