OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 <script> | 5 <script> |
6 window.jsTestIsAsync = true; | 6 window.jsTestIsAsync = true; |
7 | 7 |
8 function initEventHandlers(element) { | 8 function initEventHandlers(element) { |
9 element.addEventListener('mousedown', handleEvent); | 9 element.addEventListener('mousedown', handleEvent); |
10 element.addEventListener('mouseup', handleEvent); | 10 element.addEventListener('mouseup', handleEvent); |
11 element.addEventListener('click', handleEvent); | 11 element.addEventListener('click', handleEvent); |
12 } | 12 } |
13 | 13 |
14 window.events = []; | 14 window.events = []; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 #scrollme p { | 57 #scrollme p { |
58 height: 1000px; | 58 height: 1000px; |
59 } | 59 } |
60 </style> | 60 </style> |
61 </head> | 61 </head> |
62 <body> | 62 <body> |
63 <div id="scrollme"><p>This is a scrollable div.</p></div> | 63 <div id="scrollme"><p>This is a scrollable div.</p></div> |
64 <pre id="console"></pre> | 64 <pre id="console"></pre> |
65 </body> | 65 </body> |
66 </html> | 66 </html> |
OLD | NEW |