OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <body> | 2 <body> |
3 <script> | 3 <script> |
4 enablePixelTesting = true; | 4 enablePixelTesting = true; |
5 </script> | 5 </script> |
6 <script src="../../js/resources/js-test-pre.js"></script> | 6 <script src="../../../resources/js-test.js"></script> |
7 <script src="../resources/common.js"></script> | 7 <script src="../resources/common.js"></script> |
8 | 8 |
9 <input type="range"> | 9 <input type="range"> |
10 <div id="console"></div> | 10 <div id="console"></div> |
11 | 11 |
12 <script> | 12 <script> |
13 eventSender.mouseMoveTo(800, 600); | 13 eventSender.mouseMoveTo(800, 600); |
14 description('Clicking on a form control should focus on it.'); | 14 description('Clicking on a form control should focus on it.'); |
15 testPassed('Focus event was dispatched.'); | 15 testPassed('Focus event was dispatched.'); |
16 hoverOverElement(document.querySelector('input')); | 16 hoverOverElement(document.querySelector('input')); |
17 </script> | 17 </script> |
18 </body> | 18 </body> |
OLD | NEW |