4 if (window
.testRunner
) {
5 testRunner
.dumpAsText();
6 testRunner
.waitUntilDone();
8 function timeoutFired()
10 document
.getElementById('console').innerHTML
= "Scrolled by JavaScript scrollTo(): FAILED";
11 if (window
.testRunner
)
12 window
.testRunner
.notifyDone();
14 function scrollEventFired()
16 document
.getElementById('console').innerHTML
= "Scrolled by JavaScript scrollTo(): PASS";
17 if (window
.testRunner
)
18 window
.testRunner
.notifyDone();
22 window
.frames
[0].onscroll
= scrollEventFired
;
23 window
.frames
[0].scrollTo(0, 50);
24 setTimeout("timeoutFired()", 1000);
29 <div id=
"console"></div>
30 <iframe onload=
"runTest();" scrolling=
"no" style=
"width:200px;height:200px;" src=
"resources/scrollable-iframe.html">