blob: ebc82b606a525e09d80146f58a176de0e3bdde5c [file] [log] [blame]
<p>This tests for a hang when pasting underlined content at the end of a paragraph. You should see 'Hello <u>World!</u>' below.</p>
<div id="div" contenteditable="true"><div>Hello&nbsp;</div></div>
<script>
var sel = window.getSelection();
var div = document.getElementById("div");
sel.collapse(div, div.childNodes.length);
document.execCommand("InsertHTML", false, "<span style='text-decoration: underline;'><div>World!</div></span>");
</script>