OLD | NEW |
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 if (window.testRunner) | 3 if (window.testRunner) { |
4 testRunner.dumpAsText(); | 4 testRunner.dumpAsText(); |
| 5 testRunner.waitUntilDone(); |
| 6 } |
| 7 |
| 8 function finish() |
| 9 { |
| 10 if (window.testRunner) |
| 11 testRunner.notifyDone(); |
| 12 } |
5 </script> | 13 </script> |
6 <body> | 14 <body> |
7 <object type="image/png" data="this.object.does.not.exist.dtd"> | 15 <object type="image/png" data="this.object.does.not.exist.dtd"> |
8 <object type="image/png" data="this.object.does.not.exist.dtd"> | 16 <object type="image/png" data="this.object.does.not.exist.dtd"> |
9 <object type="image/png" data="this.object.does.not.exist.dtd">P
ASS when no crash occurs.</object> | 17 <object type="image/png" data="this.object.does.not.exist.dtd" o
nerror="finish()">PASS when no crash occurs.</object> |
10 </object> | 18 </object> |
11 </object> | 19 </object> |
12 </body> | 20 </body> |
13 </html> | 21 </html> |
OLD | NEW |