Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / block / float / float-originating-line-deleted-crash.html
1 <html>
2 Test passes if it does not crash.
3 <body>
4 <script>
5 if (window.testRunner)
6     testRunner.dumpAsText();
7
8 function runTest()
9 {
10     child = document.getElementById('test');
11     child.parentNode.removeChild(child);
12
13         document.body.offsetTop;
14 }
15
16 window.onload = runTest;
17 </script>
18 <style id='test'>
19     p { float: left; }
20 </style>
21 <table><span><p></p><p></p></span></table>
22 </html>