1
0
Fork 0
firefox/testing/web-platform/tests/css/css-view-transitions/root-scrollbar-with-fixed-background-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

41 lines
899 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<title>View transitions: capture root element with scrollbar (ref)</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
<link rel="author" href="mailto:khushalsagar@chromium.org">
<style>
#container {
background: lightblue;
}
#first {
width: 10px;
background: linear-gradient(green, blue);
height: 1000px;
}
body {
margin: 0px;
padding: 0px;
filter: invert(1);
}
</style>
<div id=container>
<div id=first></div>
</div>
<script>
function scrollContainer() {
addEventListener("scroll", () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.documentElement.classList.remove("reftest-wait");
});
});
}, { once: true, capture: true });
document.documentElement.scrollTop = 500;
}
onload = scrollContainer();
</script>
</html>