1
0
Fork 0
firefox/layout/reftests/transform/animate-layer-scale-inherit-4.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

27 lines
492 B
HTML

<!DOCTYPE HTML>
<title>Testcase, bug 1526847</title>
<style>
#outer, #inner {
display: inline-block;
background: white;
color: black;
}
#outer { scale: 5 }
#inner {
vertical-align: top;
height: 100px;
width: 100px;
background: repeating-linear-gradient(to top left, yellow, blue 10px);
animation: HoldTransform linear infinite 1s;
}
@keyframes HoldTransform {
from, to { scale: 0.5; transform: scale(0.4); }
}
</style>
<div id="outer">
<div id="inner">
</div>
</div>