[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / scrollbars / scrollevent-iframe-no-scrolling-wheel.html
1 <html>
2     <head>
3         <script>
4             if (window.layoutTestController) {
5                 layoutTestController.dumpAsText();
6                 layoutTestController.waitUntilDone();
7             }
8             function timeoutFired()
9             {
10                 document.getElementById('console').innerHTML = "Not scrolled by WheelEvent: SUCCESS";
11                 if (window.layoutTestController)
12                     window.layoutTestController.notifyDone();
13             }
14             function scrollEventFired()
15             {
16                 document.getElementById('console').innerHTML = "Scrolled by WheelEvent: FAILED (Should not be scrolled).";
17                 if (window.layoutTestController)
18                     window.layoutTestController.notifyDone();
19             }
20             function runTest()
21             {
22                 window.frames[0].onscroll = scrollEventFired;
23                 if (window.frames[0].eventSender) {
24                     window.frames[0].eventSender.mouseScrollBy(0, -1);
25                 }
26                 setTimeout("timeoutFired()", 1000);
27             }
28         </script>
29     </head>
30     <body>
31         <div id="console"></div>
32         <iframe onload="runTest();" scrolling="no" style="width:200px;height:200px;" src="resources/scrollable-iframe.html"> 
33     </body>
34 </html>
35