Files
ladybird/Tests/LibWeb/Crash/CSS/animation-duration-auto.html
Callum Law 826e947920 LibWeb: Propagate 'auto' value of animation-duration
Avoids a crash when `animation-duration` was `auto`
2025-11-28 13:24:11 +00:00

9 lines
135 B
HTML

<!DOCTYPE html>
<style>
#foo {
animation-name: anim;
animation-duration: auto;
}
</style>
<div id="foo"></div>