no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / async-scrolling / position-sticky-scrolled-clip-1-ref.html
blobc07e288f5672d22738092476d96ad26f80ab4764
1 <!DOCTYPE html>
2 <html>
4 <title>Reference for: position:sticky with scrolled clip should correctly move the clip</title>
6 <style>
8 body {
9 margin: 0;
10 height: 4000px;
13 .halfBox {
14 position: absolute;
15 left: 0;
16 top: 100px;
17 width: 100px;
18 height: 50px;
19 box-sizing: border-box;
20 border: 1px solid black;
21 border-bottom: none;
24 </style>
26 <div class="halfBox"></div>
28 <script>
30 document.documentElement.scrollTop = 100;
32 </script>