1
0
Fork 0
firefox/layout/reftests/display-list/retained-dl-scroll-out-of-view-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

18 lines
489 B
HTML

<html class="reftest-wait">
<head>
</head>
<body>
<div id="container" style="height: 100px; overflow: hidden;">
<div id="second" style="background-color:red; width: 10px; height: 10px;"></div>
<div id="spacer" style="height: 200px;"></div>
</div>
</body>
<script>
function doTest() {
document.getElementById("container").scrollTop = 100;
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</html>