Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / overflow / 008.html
blob78d4cb541677db1ea69a7632c2b4617b2d351765
1 <html>
2 <body><div style="overflow:auto;width:200px;height:200px;">
3 </div>
5 The word 'PASSED' should be scrolled into view above. If you don't see it the test has failed.
7 <script>
8 document.body.firstChild.innerHTML = "<div style='padding-top:200px;width:200px;padding-left:200px; height:200px;background-color:green;color:white'>PASSED</div>";
9 document.body.firstChild.scrollLeft = 200;
10 document.body.firstChild.scrollTop = 200;
11 </script>