blob: a82cce3e859702a1ce02cfb0231d0c742e8a566b [file] [log] [blame]
<body contenteditable="true"></body>
<script>
var sel = window.getSelection();
sel.collapse(document.body, 0);
document.execCommand("InsertText", false, "This tests for a bug where selecting a word would select the line break and word before it. Only the word in the paragraph below should be selected:");
document.execCommand("InsertParagraph");
document.execCommand("InsertText", false, "foo");
sel.modify("extend", "backward", "word");
</script>