Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / crash-empty-section-fixed-layout-calcArray.html
blob1db7232895ed0bef69aaf009b574016c1b9679ae
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 function crash() {
9 var firstBody = document.getElementById("firstBody");
10 firstBody.removeChild(firstBody.firstChild);
11 firstBody.offsetTop;
14 window.addEventListener("load", crash, false);
15 </script>
16 </head>
17 <body>
18 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=71246">71246</a>: REGRESSION(98738): Multiple crashes in the table rendering code</p>
19 <p>This test PASSES if it does not CRASH.</p>
20 <table style="table-layout:fixed; width:0;">
21 <tbody id="firstBody"><tr></tr></tbody>
22 </table>
23 </body>
24 </html>