Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<title>Animating the "scale" property on an SVG element</title>
<link rel="match" href="scale-animation-on-svg-ref.html">
<style>
@keyframes scale-animation {
from { scale: 1; }
to { scale: 2; }
}
svg {
width: 400px;
height: 400px;
}
rect {
width: 100px;
height: 100px;
transform-origin: top left;
animation: scale-animation 1ms linear forwards;
}
</style>
</head>
<body>
<svg><rect></rect></svg>
<script>
(async function() {
await Promise.all(document.getAnimations().map(animation => animation.finished));
document.documentElement.classList.remove("reftest-wait");
})();
</script>
</body>
</html>