Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / float-not-removed-from-next-sibling5.html
blob18a80dd3992ffbed1e7183df5f800fe2e3377664
1 <html>
2 Test passes if it does not crash.
3 <div id="test1" style="width: 12px; position: relative">
4 <span>
5 <div id="test2">
6 <p style="float: left"></p>
7 </div>
8 </span>
9 <div id="test3">
10 <span>
11 <p>A A</p>
12 </span>
13 </div>
14 </div>
15 <script>
16 if (window.testRunner)
17 testRunner.dumpAsText();
19 document.body.offsetTop;
20 test3.style.position = 'absolute';
21 test2.style.position = 'absolute';
22 document.body.offsetTop;
23 test1.style.height = '1';
24 test2.style.display = 'none';
25 </script>
26 </html>