mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
Previously we assumed the angle would always be an `AngleStyleValue` but it can also be a `CalculatedStyleValue` Fixes #6870
17 lines
261 B
HTML
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>
|