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/chrome-bug-404743651.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Animations: Chrome crash for getKeyframes() when animating background-image</title>
<style>
@keyframes animate {
to { background-image: url(foo.jpg); }
}
#target {
animation: animate 100s;
}
</style>
<div id="target"></div>
<script>
for (let anim of document.getAnimations()) {
anim.effect.getKeyframes();
}
</script>