Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/events/replace-event-listener-null-browsing-context-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Event listeners: replace listener after moving between documents</title>
<link rel="author" title="Nate Chapin" href="mailto:japhet@chromium.org">
<meta name="assert" content="Overwriting an attribute event listener after adopting the owning node to a different document should not crash"/>
<progress id="p">
<iframe id="i"></iframe>
<script>
var p = document.getElementById("p");
i.contentDocument.adoptNode(p);
p.setAttribute("ontouchcancel", "");
document.body.appendChild(p);
p.setAttribute("ontouchcancel", "");
</script>