Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / removing-inside-relpositioned-inline-crash.html
blob11a5a3cab42152ace6732e652ae2ce6668501235
1 <html>
2 <body onload="runTest()">
3 <style>
4 a { position: relative; }
5 span { position: absolute; }
6 </style>
7 <script>
8 if (window.testRunner)
9 testRunner.dumpAsText();
11 function runTest()
13 document.body.offsetTop;
14 child = document.getElementById('test');
15 child.parentNode.removeChild(child);
16 document.body.offsetTop;
17 document.body.innerHTML = 'PASS';
19 </script>
20 <script></script>
21 <div><a><span>
22 <table id="test">
23 <isindex>
24 </span></a></div>
25 </body>
26 </html>