Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-animations/crashtests/svg-element-css-animation.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS animation on SVG element should not crash</title>
<style>
@keyframes crash {
to { color: green; }
}
rect {
animation: crash 100s;
}
</style>
<svg>
<rect></rect>
</svg>