Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>