Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / crash-empty-section-calcBorder.html
blob7555a72035f7beb7002e030c378d1eb16155585b
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="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>