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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 if (window.testRunner) { | 54 if (window.testRunner) { |
55 testRunner.dumpAsText(); | 55 testRunner.dumpAsText(); |
56 testRunner.waitUntilDone(); | 56 testRunner.waitUntilDone(); |
57 } | 57 } |
58 | 58 |
59 window.onload = runTests; | 59 window.onload = runTests; |
60 </script> | 60 </script> |
61 </body> | 61 </body> |
62 </html> | 62 </html> |
OLD | NEW |