1
0
Fork 0
firefox/testing/web-platform/tests/scroll-animations/animation-trigger/animation-trigger-fill-mode-none-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

30 lines
585 B
HTML

<!DOCTYPE html>
<html>
<body>
<style>
.scroller {
overflow-y: scroll;
border: solid 1px;
place-self: center;
height: 300px;
width: 200px;
position: relative;
}
.target {
height: 100px;
width: 100%;
background-color: blue;
}
.space {
height: 250px;
width: 50%;
}
</style>
<div id="scroller" class="scroller">
<div class="space"></div>
<div id="target" class="target"></div>
<div class="space"></div>
</div>
</body>
</html>