Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / float-not-removed-from-next-sibling4.html
blob91896e6ee5d3db047573b7be8bd3c1d301c02269
1 <!DOCTYPE html>
2 <html>
3 <body onload="runTest()">
4 <div style="width: 15px;">
5 <script>
6 function runTest()
8 document.body.offsetTop;
9 var container = document.getElementById('panel');
10 container.style.position = 'relative';
11 document.getElementById('test1').style.setProperty("-webkit-column-count", "3");
12 document.getElementById('test2').style.position = 'absolute';
14 </script>
15 <div id="panel">
16 <div id="test1">
17 <img style="float: left; width: 15px; height: 200px; background-color: silver;">
18 </div>
19 <div id="test2" style="font-family: Ahem;">
20 <a><p>A B C D</p>
21 </div>
22 </div>
23 </div>
24 </body>
25 </html>