blob: 4dbcd0d09b53b269c854bd54a99cba3c42023e27 [file] [log] [blame]
[email protected]8346e502010-09-13 06:24:411<html>
2 <head>
3 <script>
[email protected]f94dcec2012-06-15 07:38:374 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
[email protected]8346e502010-09-13 06:24:417 }
8 function timeoutFired()
9 {
10 document.getElementById('console').innerHTML = "Scrolled by JavaScript scrollTo(): FAILED";
[email protected]f94dcec2012-06-15 07:38:3711 if (window.testRunner)
Xianzhu Wangaf4fa412018-05-14 21:26:5212 testRunner.notifyDone();
[email protected]8346e502010-09-13 06:24:4113 }
14 function scrollEventFired()
15 {
16 document.getElementById('console').innerHTML = "Scrolled by JavaScript scrollTo(): PASS";
[email protected]f94dcec2012-06-15 07:38:3717 if (window.testRunner)
Xianzhu Wangaf4fa412018-05-14 21:26:5218 testRunner.notifyDone();
[email protected]8346e502010-09-13 06:24:4119 }
20 function runTest()
21 {
22 window.frames[0].onscroll = scrollEventFired;
23 window.frames[0].scrollTo(0, 50);
24 setTimeout("timeoutFired()", 1000);
25 }
26 </script>
27 </head>
28 <body>
29 <div id="console"></div>
30 <iframe onload="runTest();" scrolling="no" style="width:200px;height:200px;" src="resources/scrollable-iframe.html">
31 </body>
32</html>
33