Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / float-not-removed-from-next-sibling3.html
blob6f7378af2491a96d47df4f9523e72ac5a5f58c7d
1 <html>
2 <body onload="runTest()">
3 <div style="width: 15px;">
4 <script>
5 function runTest()
7 document.body.offsetTop;
8 var container = document.getElementById('panel');
9 container.style.position = 'relative';
10 document.getElementById('test1').style.overflow = 'hidden';
11 document.getElementById('test2').style.position = 'absolute';
13 </script>
14 <div id="panel">
15 <div id="test1">
16 <img style="float: left; width: 15px; height: 200px; background-color: silver;">
17 </div>
18 <div id="test2" style="font-family: Ahem;">
19 <a><p>A B C D</p>
20 </div>
21 </div>
22 </div>
23 </body>
24 </html>