Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / 008.html
blob24ee1cea826b44a0c68e1c184271e2ef8fa13b01
1 <html>
2 <head>
3 <style>
4 div.box {
5 display: -moz-box;
6 display: -webkit-box;
7 display: box;
8 height: 200px;
9 width: 100px;
10 background-color:green;
13 div.float {
14 float: left;
15 width: 100px;
16 height: 200px;
17 background-color: green;
19 </style>
20 </head>
21 <body>
22 <p>You should see a 200x200 green square below. If you see any red, the test has failed.
23 This test is checking to make sure that boxes will shift to avoid floats that try to intrude into their space
24 (just as tables do).
25 </p>
26 <div style="width:200px;height:200px;background-color:red">
27 <div class="float">
28 </div>
30 <div class="box"></div>
31 </div>
32 </body>
33 </html>