ladybird/Tests/LibWeb/Crash/CSS/interpolated-calculated-multi-argument-rotate.html
Callum Law 46abc0e8e2 LibWeb: Handle calc in multi-argument rotate property interpolation
Previously we assumed the angle would always be an `AngleStyleValue` but
it can also be a `CalculatedStyleValue`

Fixes #6870
2025-11-23 09:43:24 +01:00

17 lines
261 B
HTML

<!DOCTYPE html>
<style>
@keyframes foo {
from {
rotate: 1 1 1 calc(0deg);
}
to {
rotate: 1 1 1 calc(90deg);
}
}
#foo {
animation: foo 1s infinite;
}
</style>
<div id="foo"></div>