Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / writing-mode / overhanging-float-legend-crash.html
blob3c87666ff5163e199f57ce53f77bd3cc5d143d33
1 <html>
2 <script>
3 if (window.testRunner)
5 testRunner.dumpAsText();
8 window.onload = crash;
10 function crash()
12 block1.style.position = 'absolute';
13 float1.style.display = 'none';
14 document.body.offsetTop;
16 document.getElementById("result").innerHTML = "PASS";
18 </script>
19 <div id="result"></div>
20 <div id="block1">
21 <span id="float1" style="float:left; margin-bottom:10000px;"></span>
22 </div>
23 <legend>
24 <fieldset></fieldset>
25 <junk>
26 </legend>
27 </html>