Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / layers / scroll-overflow-no-layer.html
blobc4918112088205193700425a753f011c52c7e3e3
1 <!DOCTYPE>
2 <html>
3 <head>
4 <style>
5 #overflow {
6 height: 100px;
7 width: 100px;
8 overflow: hidden;
10 </style>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
15 function testScroll()
17 var overflowDiv = document.getElementById("overflow");
18 overflowDiv.scrollTop = 100;
19 overflowDiv.innerHTML = "PASSED: The test did not crash!";
21 window.addEventListener("load", testScroll, false);
22 </script>
23 </head>
24 <body>
25 <div><a href="https://bugs.webkit.org/show_bug.cgi?id=83728">bug 83728</a>: Reduce the use of Layer outside of the rendering code</div>
26 <div>This test passes if you see PASSED below.</div>
27 <div id="overflow">FAILED</div>
28 <body>
29 </html>