Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / positioning / fixed-positioning-scrollbar-bug.html
blobd812b93e24fff0a494ffba072956bedb79a81d75
1 <html>
2 <head>
3 <title></title>
4 </head>
5 <body>
6 The purple box should stick to the bottom of the window.
7 <script>
8 document.body.offsetTop; // Force layout now.
9 </script>
10 <div style="height: 2000px; width: 1px; position: absolute;">
11 </div>
12 <div style="position: fixed; bottom: 0; height: 100px; width: 100px; background: purple;"></div>
13 <!-- Try to load a resource. -->
14 <span style="display: none; background-image: url(data:image/png,);"></span>
15 </body>
16 </html>