Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/edit-context/edit-context-detach-from-contenteditable-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<div contenteditable>hello world</div>
<script>
'use strict';
const host = document.querySelector('div');
host.editContext = new EditContext();
host.focus();
host.editContext = null;
getSelection().collapse(host.firstChild, 5);
</script>