no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / async-scrolling / fixed-pos-scrolled-clip-1-ref.html
blobcf4e8ac543f2144a654ba576797da3a155ee6806
1 <!DOCTYPE html>
2 <html>
4 <title>Reference for: position:fixed with scrolled clip should prerender everything and correctly move the clip</title>
6 <style>
8 body {
9 margin: 0;
10 height: 4000px;
13 .greenSquare {
14 position: absolute;
15 top: 300px;
16 left: 100px;
17 width: 200px;
18 height: 200px;
19 background: lime;
22 </style>
24 <div class="greenSquare"></div>
26 <script>
28 document.documentElement.scrollTop = 200;
30 </script>