Status: PASS | Duration: 2ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/css/css-animations/neutral-var-keyframe-cycle-crash.html
<!DOCTYPE html> <title>CSS Animations: Crash when using neutral keyframes and a var()-cycle</title> <link rel="help" href="https://crbug.com/433196586"> <style> #test { animation: anim 1s; } @keyframes anim { to { --x: var(--x); } } </style> <div id="test">PASS if no crash</div>