OLD | NEW |
1 <html> | 1 <html> |
2 Test passes if it does not crash. | 2 Test passes if it does not crash. |
3 <script> | 3 <script> |
4 if (window.testRunner) | 4 if (window.testRunner) |
5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
6 | 6 |
7 function crash() { | 7 function crash() { |
8 body1 = document.createElement("body"); | 8 body1 = document.createElement("body"); |
9 i1 = document.createElement("i"); | 9 i1 = document.createElement("i"); |
10 document.documentElement.appendChild(i1); | 10 document.documentElement.appendChild(i1); |
11 i1.appendChild(body1); | 11 i1.appendChild(body1); |
12 body1.style.display = "inline-block"; | 12 body1.style.display = "inline-block"; |
13 } | 13 } |
14 document.addEventListener("DOMContentLoaded", crash, false); | 14 document.addEventListener("DOMContentLoaded", crash, false); |
15 </script> | 15 </script> |
16 </html> | 16 </html> |
OLD | NEW |