| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <pre id='console'></pre> | 4 <pre id='console'></pre> |
| 5 <script src="../../resources/gc.js"></script> | 5 <script src="../../resources/gc.js"></script> |
| 6 <script> | 6 <script> |
| 7 function log(message) | 7 function log(message) |
| 8 { | 8 { |
| 9 document.getElementById('console').appendChild(document.createTextNode(messa
ge + "\n")); | 9 document.getElementById('console').appendChild(document.createTextNode(messa
ge + "\n")); |
| 10 } | 10 } |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 if (window.testRunner) { | 59 if (window.testRunner) { |
| 60 testRunner.dumpAsText(); | 60 testRunner.dumpAsText(); |
| 61 testRunner.waitUntilDone(); | 61 testRunner.waitUntilDone(); |
| 62 } | 62 } |
| 63 | 63 |
| 64 window.onload = runTest; | 64 window.onload = runTest; |
| 65 </script> | 65 </script> |
| 66 </body> | 66 </body> |
| 67 </html> | 67 </html> |
| OLD | NEW |