Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / overlapping-floats-with-overflow-hidden.html
blobb8d4b2359cf89f2dd4aee7a95645b89bd49ba1aa
1 <html>
2 <head>
3 <style>
4 #bottom {
5 float: left;
6 width: 520px;
7 height: 356px;
8 background-color:red;
11 #top {
12 float:left;
13 width: 520px;
14 height: 356px;
15 margin-top:-356px;
16 overflow:hidden;
17 background-color:green;
19 </style>
21 </head>
23 <body>
24 There should be no red visible below.
25 <div style="width:520px">
26 <div id="bottom"></div>
27 <div id="top"></div>
28 </div>
30 </body>
31 </html>