OLD | NEW |
1 <html> | 1 <html> |
2 <script src="../js/resources/js-test-pre.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
3 <body style="min-width: 5000px; min-height: 5000px"> | 3 <body style="min-width: 5000px; min-height: 5000px"> |
4 <script> | 4 <script> |
5 description('Checks that the scroll event fires on the document asychronously an
d only once.'); | 5 description('Checks that the scroll event fires on the document asychronously an
d only once.'); |
6 | 6 |
7 var eventCount = 0; | 7 var eventCount = 0; |
8 var doneTimeout; | 8 var doneTimeout; |
9 | 9 |
10 onscroll = function(event) | 10 onscroll = function(event) |
11 { | 11 { |
12 eventCount++; | 12 eventCount++; |
(...skipping 17 matching lines...) Expand all Loading... |
30 if (eventCount > 0) { | 30 if (eventCount > 0) { |
31 testFailed('Scroll event fired synchronously'); | 31 testFailed('Scroll event fired synchronously'); |
32 finishJSTest(); | 32 finishJSTest(); |
33 } | 33 } |
34 window.scrollTo(200, 200); | 34 window.scrollTo(200, 200); |
35 } | 35 } |
36 var jsTestIsAsync = true; | 36 var jsTestIsAsync = true; |
37 </script> | 37 </script> |
38 </body> | 38 </body> |
39 </html> | 39 </html> |
OLD | NEW |