Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / ietestcenter / css3 / flexbox / flexbox-align-end-001-expected.htm
blob2c7a04538ad0307d7143079f3d7a711c823e157c
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 end places flex items at the bottom 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') top left repeat-x red;
11 width: 300px;
12 height: 200px;
13 z-index: -1;
14 position: relative;
16 .child
18 width: 100px;
19 height: 100px;
20 background: green;
21 position: absolute;
22 top: 100px;
24 .sub_b
26 left:100px;
28 .sub_c
30 left: 200px;
32 </style>
33 </head>
34 <body>
35 <p>This test passes if there is no red showing.</p>
36 <div class="box">
37 <div class="child">Box1</div>
38 <div class="child sub_b">Box2</div>
39 <div class="child sub_c">Box3</div>
40 </div>
41 </body>
42 </html>