blob: 8a996bffc0a8c6843aa94fec1823cbeef49938f6 [file] [log] [blame]
<!DOCTYPE html>
<script>
function runTest() {
var element = (document.getElementById("editableContent")).firstChild;
getSelection().collapse(element, element.length);
}
</script>
<body onload="runTest();">
<!-- We want to test block cursor appearance at the end of lines that aren't the end of the editable element. -->
<div id="editableContent" contenteditable="true">ABC<br>ABC</div>
</body>