gecko-dev/layout/reftests/async-scrolling/position-sticky-bug1434250-ref.html
Botond Ballo bb3e018735 Bug 1434250 - Reftest. r=kats
MozReview-Commit-ID: HiPeeyLD6Xh

--HG--
extra : rebase_source : 6cb9c15ceec1ca2e4fdc3b7c9f43f22903af2c5d
2018-02-07 16:01:30 -05:00

29 lines
506 B
HTML

<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<style type="text/css" media="all">
body {
margin-top: 0;
overflow: hidden;
}
.container {
width: 500px;
background: #fcc;
height: 2000px;
}
.header {
position: sticky;
top: 0px;
background: #cfc;
height: 50px;
}
</style>
</head>
<body>
<div class='container'>
<div class='header'></div>
</div>
</body>
</html>