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/detached-document-element-animate.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Animating elements attached to detached documents should not crash</title>
<script>
document.implementation.createDocument('', '').createElement('div').animate({transform: 'none'}, 1000);
</script>