blob: 221fa4dd87d179e4d5c98cf94ab460a6b16714d4 [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" style="direction: rtl;" contenteditable="true">&#x05e9;&#x05d3;&#x05df;ABC<br>ABC</div>
</body>