blob: 4fba13d5d8eb3f0939e9265c709a00eec452ddf0 [file] [log] [blame] [edit]
<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>