ladybird/Tests/LibWeb/Crash/CSS/interpolated-calculated-multi-argument-rotate.html

18 lines
261 B
HTML
Raw Normal View History

<!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>