1
0
Fork 0
firefox/testing/web-platform/tests/css/css-transforms/scale-animation-with-var-001.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

29 lines
589 B
HTML

<!DOCTYPE HTML>
<!-- this is functionally a crashtest, but I'm including a reference too -->
<link rel="help" href="https://issues.chromium.org/issues/375798131">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<style>
@keyframes k {
to {
scale: var(--scale-to);
}
}
#target {
--percentage: 3;
--scale-to: calc(var(--percentage));
animation: k linear 2s -1s paused;
width: 50px;
height: 50px;
background: green;
transform-origin: top left;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div id="target"></div>