зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
455 B
HTML
15 строки
455 B
HTML
<!doctype html>
|
|
<div contenteditable>abc<span></span><span></span></div>
|
|
<script>
|
|
// For emulating the traditional behavior, collapse Selection to end of the
|
|
// text node after this <script>.
|
|
getSelection().collapse(
|
|
document.body.lastChild,
|
|
document.body.lastChild.length
|
|
);
|
|
const editingHost = document.querySelector("div[contenteditable]");
|
|
getSelection().collapse(editingHost, 3);
|
|
document.execCommand("insertText", false, " ");
|
|
</script>
|
|
</body>
|