OLD | NEW |
1 <html> | 1 <html> |
2 <body onload="runTest();"> | 2 <body onload="runTest();"> |
3 Test passes if it does not crash. | 3 Test passes if it does not crash. |
4 <script> | 4 <script> |
5 if (window.layoutTestController) | 5 if (window.layoutTestController) |
6 layoutTestController.dumpAsText(); | 6 layoutTestController.dumpAsText(); |
7 | 7 |
8 function runTest() { | 8 function runTest() { |
9 span0 = document.createElement('span'); | 9 span0 = document.createElement('span'); |
10 document.documentElement.appendChild(span0); | 10 document.documentElement.appendChild(span0); |
(...skipping 16 matching lines...) Expand all Loading... |
27 span1.appendChild(li); | 27 span1.appendChild(li); |
28 | 28 |
29 document.body.offsetTop; | 29 document.body.offsetTop; |
30 | 30 |
31 span3 = document.createElement('span'); | 31 span3 = document.createElement('span'); |
32 span3.appendChild(span0); | 32 span3.appendChild(span0); |
33 } | 33 } |
34 </script> | 34 </script> |
35 </body> | 35 </body> |
36 </html> | 36 </html> |
OLD | NEW |