Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / crash-col-in-anonymous-table.html
blobfb6a06d186779a48ca0ed709c8dfefd8a609908c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
8 function crash() {
9 var th = document.createElement("th");
10 var col = document.createElement("col");
12 document.body.appendChild(th);
13 document.body.appendChild(col);
15 </script>
16 </head>
17 <body onload="crash();">
18 <div>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=330651">330651</a>: infinite recursion when creating anonymous table structure</div>
19 <div>This test passes if it does not CRASH or HANG.</div>
20 </body>
21 </html>