| OLD | NEW |
| 1 <html> | 1 <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 src="resources/record-events.js"></script> | 4 <script src="resources/record-events.js"></script> |
| 5 <script> | 5 <script> |
| 6 if (window.testRunner) | 6 if (window.testRunner) |
| 7 testRunner.dumpAsText(); | 7 testRunner.dumpAsText(); |
| 8 | 8 |
| 9 window.onload = runTest; | 9 window.onload = runTest; |
| 10 | 10 |
| 11 function runTest() | 11 function runTest() |
| 12 { | 12 { |
| 13 if (!window.eventSender) | 13 if (!window.eventSender) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 34 <input type="text" id="secondInput" placeholder="second input" /> | 34 <input type="text" id="secondInput" placeholder="second input" /> |
| 35 </div> | 35 </div> |
| 36 <div id="console"></div> | 36 <div id="console"></div> |
| 37 <script> | 37 <script> |
| 38 description("This test checks that when a user focuses on the "first in
put" text field, modifies its contents, and then " + | 38 description("This test checks that when a user focuses on the "first in
put" text field, modifies its contents, and then " + |
| 39 "defocuses it by pressing the tab key that the following DOM eve
nts are fired in order: Focus, Change, Blur, Focus " + | 39 "defocuses it by pressing the tab key that the following DOM eve
nts are fired in order: Focus, Change, Blur, Focus " + |
| 40 "(on "second input"). Note, this test must be run by D
ump Render Tree."); | 40 "(on "second input"). Note, this test must be run by D
ump Render Tree."); |
| 41 </script> | 41 </script> |
| 42 </body> | 42 </body> |
| 43 </html> | 43 </html> |
| OLD | NEW |