<p>This tests for a bug where content before a list made into a list item would be placed at the end of the list instead of the beginning. The list items below should contain "One", "Two" and "Three", in that order.</p> | |
<div id="div" contenteditable="true"><div>One</div><ul><li>Two</li><li>Three</li></ul></div> | |
<script> | |
var div = document.getElementById("div"); | |
var selection = window.getSelection(); | |
div.focus(); | |
selection.setPosition(div, 0); | |
document.execCommand("InsertUnorderedList"); | |
</script> |