Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / block / float / floats-not-cleared-crash.html
1 <html>
2 <script>
3 if (window.testRunner)
4     testRunner.dumpAsText();
5
6 window.onload = crash;
7 function crash()
8 {
9     document.body.offsetTop;
10
11     block1.style.position = 'absolute';
12     float1.style.display = 'none';
13
14     document.body.offsetTop;
15     block1.innerHTML = "PASS";
16 }
17 </script>
18 <div id="block1">
19 <span id="float1" style="float: left; margin-bottom: 10000px;">
20 </div>
21 <junk>
22 <html>