tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / fast / table / crash-empty-section-calcBorder.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5     if (window.layoutTestController)
6         layoutTestController.dumpAsText();
7
8     function crash() {
9         var firstBody = document.getElementById("firstBody");
10         firstBody.removeChild(firstBody.firstChild);
11         firstBody.offsetTop;
12     }
13
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="border-collapse: collapse">
21     <tbody id="firstBody" style="border: 2px solid green"><tr style="border: 4px solid red"></tr></tbody>
22 </table>
23 </body>
24 </html>