Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-animations/crashtests/base-render-style.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Animating an element moved to another document should not crash</title>
<iframe id="dc"></iframe>
<canvas id="ak">
<object id="bs">
<script>
bs.animate([{"backgroundClip":"content-box"}, {"backgroundClip":"border-box"}], 2000);
try {bs.appendChild(document.querySelector("e2").cloneNode(true));}catch(e){}
dc.contentDocument.body.appendChild(ak);
</script>
</object>
</canvas>