neutral-var-keyframe-cycle-crash.html (333B)
1 <!DOCTYPE html> 2 <title>CSS Animations: Crash when using neutral keyframes and a var()-cycle</title> 3 <link rel="help" href="https://crbug.com/433196586"> 4 <style> 5 #test { 6 animation: anim 1s; 7 } 8 9 @keyframes anim { 10 to { 11 --x: var(--x); 12 } 13 } 14 </style> 15 <div id="test">PASS if no crash</div>