Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
    • /html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-adopt-to-inactive-document-crash.html - WPT Dashboard Interop Dashboard
<iframe id="i"></iframe>
<script>
var marquee = document.createElement("marquee");
marquee.start();
var doc = i.contentDocument;
i.remove();
doc.adoptNode(marquee);
</script>