Video is not started even if play button has been pressed.
[framework/web/webkit-efl.git] / LayoutTests / fast / events / fire-scroll-event.html
1 <html>
2 <script src="../js/resources/js-test-pre.js"></script>
3 <body style="min-width: 5000px; min-height: 5000px">
4 <script>
5 description('Checks that the scroll event fires on the document asychronously and only once.');
6
7 var eventCount = 0;
8 var doneTimeout;
9
10 onscroll = function(event)
11 {
12     eventCount++;
13     if (eventCount == 1) {
14         debug('Scroll event bubbles: ' + event.bubbles);
15         var scrollX = document.body.scrollLeft;
16         var scrollY = document.body.scrollTop;
17         testPassed('Scroll position: (' + scrollX + ', ' + scrollY + ')');
18         // Don't call notifyDone straight away, in case there's another scroll event coming.
19         doneTimeout = setTimeout(finishJSTest, 100);
20     } else {
21         clearTimeout(doneTimeout);
22         testFailed('Scroll handler was invoked ' + eventCount + ' times');
23         finishJSTest();
24     }
25 }
26
27 onload = function()
28 {
29     window.scrollTo(100, 100);
30     if (eventCount > 0) {
31         testFailed('Scroll event fired synchronously');
32         finishJSTest();
33     }
34     window.scrollTo(200, 200);
35 }
36 var jsTestIsAsync = true;
37 </script>
38 <script src="../js/resources/js-test-post.js"></script>
39 </body>
40 </html>