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-constructor-after-detach-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Animation constructor after iframe detach should not crash</title>
<iframe id="i" src="about:blank"></iframe>
<script>
window.addEventListener('load', () => {
let i_anim = i.contentWindow.Animation;
i.remove();
new i_anim();
});
</script>