1
0
Fork 0
firefox/layout/reftests/css-animations/containing-block-on-visibility-hidden-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

26 lines
354 B
HTML

<!DOCTYPE html>
<style>
#parent {
visibility: hidden;
will-change: transform;
}
#fixed {
position: fixed;
background-color: green;
height: 100px;
width: 100px;
}
#scroll {
overflow-y: scroll;
overflow-x: hidden;
height: 80px;
width: 100px;
}
</style>
<div id="scroll">
<div id="parent">
<div id="fixed"></div>
</div>
</div>