Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /web-animations/crashtests/animation-with-null-timeline-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Setting null timeline on animation should not crash</title>
<body>
<script>
const elem = document.createElement('elem');
document.body.appendChild(elem);
const anim = elem.animate([]);
anim.reverse();
anim.finish();
anim.timeline = null;
anim.timeline = document.timeline;
</script>