Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / ietestcenter / css3 / flexbox / flexbox-align-start-001-expected.htm
blob6eb88f49f73d757827f65978af8cf3b10d9ce417
1 <!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>CSS Test: Box-align start places flex items at the top of the flexbox (in horizontal) - Reference </title>
5 <link rel="author" title="Codeaurora" href="http://www.codeaurora.org/" />
6 <link rel="help" href="http://www.w3.org/TR/2009/WD-css3-flexbox-20090723/"/>
7 <style type="text/css">
8 .box
10 background: url('../support/flexbox_100x100_green.png') bottom left repeat-x red;
11 width: 300px;
12 height: 200px;
13 position: relative;
15 .child
17 width: 100px;
18 height: 100px;
19 background: green;
20 position: absolute;
22 .sub_b
24 left: 100px;
26 .sub_c
28 left: 200px;
30 </style>
31 </head>
32 <body>
33 <p>This test passes if there is no red showing.</p>
34 <div class="box">
35 <div class="child">Box1</div>
36 <div class="child sub_b">Box2</div>
37 <div class="child sub_c">Box3</div>
38 </div>
39 </body>
40 </html>