OLD | NEW |
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 if (window.layoutTestController) { | 3 if (window.layoutTestController) { |
4 layoutTestController.dumpAsText(); | 4 layoutTestController.dumpAsText(); |
5 layoutTestController.waitUntilDone(); | 5 layoutTestController.waitUntilDone(); |
6 } | 6 } |
7 | 7 |
8 function gc() { | 8 function gc() { |
9 if (window.GCController) | 9 if (window.GCController) |
10 return GCController.collect(); | 10 return GCController.collect(); |
(...skipping 16 matching lines...) Expand all Loading... |
27 var input = document.createElement('input'); | 27 var input = document.createElement('input'); |
28 input.setAttribute('form', 'foo'); | 28 input.setAttribute('form', 'foo'); |
29 div.appendChild(input); | 29 div.appendChild(input); |
30 setTimeout(resetFormOwner, 0); | 30 setTimeout(resetFormOwner, 0); |
31 } | 31 } |
32 </script> | 32 </script> |
33 <body onload="test()"> | 33 <body onload="test()"> |
34 <p>Checks dangling form associated elements doesn't cause crash. WebKit should n
ot crash when this page is loaded.</p> | 34 <p>Checks dangling form associated elements doesn't cause crash. WebKit should n
ot crash when this page is loaded.</p> |
35 </body> | 35 </body> |
36 </html> | 36 </html> |
OLD | NEW |