OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="/js-test-resources/js-test-pre.js"></script> | 3 <script src="/js-test-resources/js-test.js"></script> |
4 <script> | 4 <script> |
5 if (window.testRunner) { | 5 if (window.testRunner) { |
6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
7 testRunner.waitUntilDone(); | 7 testRunner.waitUntilDone(); |
8 } | 8 } |
9 | 9 |
10 function log(msg) { | 10 function log(msg) { |
11 document.getElementById("log").innerHTML += msg; | 11 document.getElementById("log").innerHTML += msg; |
12 } | 12 } |
13 | 13 |
(...skipping 15 matching lines...) Expand all Loading... |
29 Test that an asynchronous script tag is executed, even if it's removed from the | 29 Test that an asynchronous script tag is executed, even if it's removed from the |
30 document before it was loaded. | 30 document before it was loaded. |
31 </p> | 31 </p> |
32 <p> | 32 <p> |
33 This test passes if the word "PASS" is displayed below. | 33 This test passes if the word "PASS" is displayed below. |
34 </p> | 34 </p> |
35 </div> | 35 </div> |
36 <div id="log"></div> | 36 <div id="log"></div> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |