Bug 1837620 - Part 6: Make edges for multiple shape guard weak too r=sfink
[gecko.git] / layout / reftests / async-scrolling / position-sticky-bug1434250-ref.html
blob153ca9f8dd064d9c7f4ba8e23c6186b84a126c38
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset='utf-8'>
5 <style type="text/css" media="all">
6 body {
7 margin-top: 0;
8 overflow: hidden;
10 .container {
11 width: 500px;
12 background: #fcc;
13 height: 2000px;
15 .header {
16 position: sticky;
17 top: 0px;
18 background: #cfc;
19 height: 50px;
21 </style>
22 </head>
23 <body>
24 <div class='container'>
25 <div class='header'></div>
26 </div>
27 </body>
28 </html>