Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / scrollbars / scrollable-iframe-remove-crash.html
blob7f886c82499c5c0478bf9ed6da67ebbdaabc74cf
1 <html>
2 <script>
3 if (window.testRunner)
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
9 function scrollEventFired()
11 document.getElementById('console').innerHTML = "Scrolled by JavaScript scrollTo(): PASS";
13 if (window.testRunner)
14 testRunner.notifyDone();
17 function runTest()
19 window.frames[0].onscroll = scrollEventFired;
20 window.frames[0].scrollTo(0, 50);
22 </script>
23 <junk id="console">
24 <iframe onload="runTest();" src="resources/scrollable-iframe.html">
25 </junk>
26 </html>