OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <head> | 2 <head> |
3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 <script> | 4 <script> |
5 var newWindow; | 5 var newWindow; |
6 | 6 |
7 if (window.testRunner) { | 7 if (window.testRunner) { |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 testRunner.setCanOpenWindows(); | 9 testRunner.setCanOpenWindows(); |
10 testRunner.waitUntilDone(); | 10 testRunner.waitUntilDone(); |
11 testRunner.setPopupBlockingEnabled(true); | 11 testRunner.setPopupBlockingEnabled(true); |
12 } | 12 } |
13 | 13 |
(...skipping 15 matching lines...) Expand all Loading... |
29 eventSender.mouseDown(); | 29 eventSender.mouseDown(); |
30 eventSender.mouseUp(); | 30 eventSender.mouseUp(); |
31 } | 31 } |
32 } | 32 } |
33 </script> | 33 </script> |
34 </head> | 34 </head> |
35 <body onload="clickButton()"> | 35 <body onload="clickButton()"> |
36 <button id="test" onclick="clickHandler()">Click Here</button> | 36 <button id="test" onclick="clickHandler()">Click Here</button> |
37 <div id="console"></div> | 37 <div id="console"></div> |
38 </body> | 38 </body> |
OLD | NEW |