Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/interaction/focus/focused-element-move-documents-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Joey Arhar" href="mailto:jarhar@chromium.org">
<!-- No crash should occur if a focused element is moved to another document. -->
<div id=editable contenteditable=>
<script>
editable.addEventListener('blur', function() {
document.execCommand('InsertText', false, '\t');
});
editable.focus();
const secondDoc = document.implementation.createDocument('', null);
secondDoc.appendChild(editable);
</script>