Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / editing / selection / block-cursor-overtype-mode-end-of-line-rtl.html
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4     internals.toggleOverwriteModeEnabled(document);
5
6 function runTest() {
7     var element = (document.getElementById("editableContent")).firstChild;
8     getSelection().collapse(element, element.length);
9 }
10 </script>
11 <body onload="runTest();">
12     <!-- We want to test block cursor appearance at the end of lines that aren't the end of the editable element. -->
13     <div id="editableContent" style="direction: rtl;" contenteditable="true">&#x05e9;&#x05d3;&#x05df;ABC<br>ABC</div>
14 </body>