Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / 005.html
blobd6016c236ff83e9182ab6843b739e29c82a784d0
1 <html>
2 <head>
3 <style>
4 div.box {
5 height: 100px;
6 background-color:green;
7 display: -moz-box;
8 display: -webkit-box;
9 display: box;
10 width: 100%;
13 div.innerBox {
14 background-color:red;
15 height:100px;
17 </style>
18 </head>
19 <body>
20 You should see a green rectangle below that is 100 pixels tall and that fills the width of the content area. If you see any red, then the test has failed.
22 <div style="background-color:red;height:100px">
23 <div class="box">
24 <div class="innerbox"></div>
25 </div>
26 </div>
27 </div>
28 </body>
29 </html>