1
0
Fork 0
firefox/layout/reftests/async-scrolling/position-fixed-transformed-1.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

23 lines
348 B
HTML

<html reftest-async-scroll
reftest-async-scroll-x="0"
reftest-async-scroll-y="200">
<head>
<style>
.fixedpos {
transform: translateX(0px);
position: fixed;
top: 0;
width: 100%;
height: 100px;
background: red;
}
.filler {
height: 4000px;
}
</style>
</head>
<body>
<div class="fixedpos"></div>
<div class="filler"></div>
</body>
</html>