| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <body> | 2 <body> |
| 3 <script> | 3 <script> |
| 4 if (window.layoutTestController) { | 4 if (window.layoutTestController) { |
| 5 layoutTestController.dumpAsText(); | 5 layoutTestController.dumpAsText(); |
| 6 layoutTestController.waitUntilDone(); | 6 layoutTestController.waitUntilDone(); |
| 7 } | 7 } |
| 8 | 8 |
| 9 function done() { | 9 function done() { |
| 10 if (window.layoutTestController) | 10 if (window.layoutTestController) |
| 11 layoutTestController.notifyDone(); | 11 layoutTestController.notifyDone(); |
| 12 } | 12 } |
| 13 </script> | 13 </script> |
| 14 <iframe src="resources/document-destruction-within-unload-iframe.html"></iframe> | 14 <iframe src="resources/document-destruction-within-unload-iframe.html"></iframe> |
| 15 <p>For the test to pass there should be no crash.</p> | 15 <p>For the test to pass there should be no crash.</p> |
| 16 </body> | 16 </body> |
| 17 </html> | 17 </html> |
| OLD | NEW |