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/report-violation-in-detached-document-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reporting animation violation in detached document should not crash</title>
<script>
var doc = new Document();
var div = document.createElement('div');
doc.prepend(div);
div.animate({'right': ['auto']});
</script>