OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <script> | |
5 if (window.testRunner) | |
6 testRunner.dumpAsText(); | |
7 | |
8 function crash() { | |
9 var th = document.createElement("th"); | |
10 var col = document.createElement("col"); | |
11 | |
12 document.body.appendChild(th); | |
13 document.body.appendChild(col); | |
14 } | |
15 </script> | |
16 </head> | |
17 <body onload="crash();"> | |
18 <div>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=330651">330651</a>: in finite recursion when creating anonymous table structure</div> | |
19 <div>This test passes if it does not CRASH or HANG.</div> | |
20 </body> | |
21 </html> | |
OLD | NEW |