tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / overflow / scroll-nested-positioned-layer-in-overflow.html
1 <html>
2 <head>
3     <style>
4         #scroller {
5             position: absolute;
6             top: 42px;
7             bottom: 0px;
8             left: 0px;
9             right: 0px;
10             overflow: overlay;
11         }
12
13         #contentarea {
14             position: absolute;
15         }
16     </style>
17 </head>
18 <body onload="document.getElementById('bt').focus()">
19     <div id="scroller">
20         <div id="contentarea">
21             This tests that we can scroll to reveal something in a nested positioned block in overflow. 
22             <div style="height: 800px"></div>
23             <input type="button" id="bt" value="If you can see this, test has passed"></input>
24         </div>   
25     </div>
26 </body>
27 </html>