Source code
Revision control
Copy as Markdown
Other Tools
<!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>