Status: PASS | Duration: 2ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/css/css-animations/crashtests/svg-element-css-animation.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS animation on SVG element should not crash</title> <link rel="help" href="https://crbug.com/40449510"> <style> @keyframes crash { to { color: green; } } rect { animation: crash 100s; } </style> <svg> <rect></rect> </svg>