Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / 007.html
blob38d009cb99f91eafd2e553778c2c64635f2e1379
1 <html>
2 <head>
3 <style>
4 div.box {
5 display: -moz-box;
6 display: -webkit-box;
7 display: box;
10 div.float {
11 float: left;
12 width: 92px;
13 height:92px;
14 background-color: green;
16 </style>
17 </head>
18 <body>
19 <p>
20 You should see a 100x100 green square below enclosed by an olive border. If you see any red, the test has failed. If the border does not fully enclose the green square, then the test has failed.
21 </p>
22 <p>
23 This test is checking to make sure blocks with auto height that are children of boxes will expand to encompass overhanging floats.
24 </p>
25 <div style="width:100px;height:100px;background-color:red">
26 <div class="box" style="border:4px solid olive">
27 <div>
28 <div class="float">
29 </div>
30 </div>
31 </div>
32 </div>
33 </body>
34 </html>