tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / overflow / 008.html
1 <html>
2 <body><div style="overflow:auto;width:200px;height:200px;">
3 </div>
4
5 The word 'PASSED' should be scrolled into view above.  If you don't see it the test has failed.
6
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>