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