Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / overflow / onscroll-layer-self-destruct.html
blobe42b169dda95c6054538bacfc5e8b16a60d0962d
1 <head>
2 <script>
3 function test() {
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
8 document.getElementById("it").scrollTop = 100;
10 </script>
11 <body onload="test()">
12 <p>This test involves a layer that self-destructs when scrolled. If there's no crash, then the test succeeded.</p>
13 <div id="it" style="height: 100%; overflow: auto;" onscroll="style.display = 'none';if (window.testRunner) testRunner.notifyDone();">
14 <div style="height: 2000px;"></div>
15 </div>
16 </body>