blob: e5bc5346044723af0b979ae5e9331b15c6d656cd [file] [log] [blame]
<p>This tests for an infinite loop on Paste. You should see 'Hello: ' and then an input field.</p>
<div id="div" contenteditable="true">Hello: </div>
<script>
var div = document.getElementById("div");
var sel = window.getSelection();
sel.setPosition(div, 0);
sel.modify("move", "forward", "word");
document.execCommand("InsertHTML", false, "<div><input type='text'></div>");
</script>