1
0
Fork 0
firefox/layout/reftests/async-scrolling/position-sticky-bug1434250-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 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>