blob: 0d768a0d938a438e1fdc9d6737abec314d7ce112 [file] [log] [blame]
<p>This tests InsertParagraph inside an editable inline element.</p>
<div style="border: 1px solid red;"><span id="span" contenteditable="true">foo</span></div>
<script>
var sel = window.getSelection();
var span = document.getElementById("span");
sel.collapse(span, 0);
document.execCommand("InsertParagraph");
</script>