Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / ietestcenter / css3 / flexbox / flexbox-pack-center-001-expected.htm
blob67e9bdba960dc9279433ae6e13286db399710809
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-pack center places flexbox items in the middle (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: green;
11 width: 400px;
12 height: 100px;
13 position: relative;
15 .child
17 width: 100px;
18 height: 100px;
19 background: green;
20 position: absolute;
22 .c1
24 left: 50px;
26 .c2
28 left: 150px;
30 .c3
32 left: 250px;
34 </style>
35 </head>
36 <body>
37 <p>This test passes if there is no red showing.</p>
38 <div class="box">
39 <div class="child c1">Box1</div>
40 <div class="child c2">Box2</div>
41 <div class="child c3">Box3</div>
42 </div>
43 </body>
44 </html>