Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/forwarddelete-at-empty-text-node-in-body.html - WPT Dashboard Interop Dashboard
<body contenteditable=true>x y
<script>
document.body.firstChild.splitText(2) // "x " and " y"
.splitText(1) // "x", " " and " y"
.splitText(1); // "x", "", " " and " y"
getSelection().collapse(document.body, 1);
document.execCommand("forwardDelete");
</script>