Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / overflow / scroll-nested-positioned-layer-in-overflow.html
blobf54abe758489314da179af6d7005329feeeb0e44
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;
13 #contentarea {
14 position: absolute;
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>