OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> |
| 5 <title>Caret RTL Direction Test</title> |
| 6 <style> |
| 7 .editing { |
| 8 border: 2px solid red; |
| 9 padding: 12px; |
| 10 font-size: 24px; |
| 11 width: 400px; |
| 12 direction: rtl; |
| 13 unicode-bidi: -webkit-isolate; |
| 14 } |
| 15 </style> |
| 16 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script
> |
| 17 |
| 18 <script> |
| 19 |
| 20 function editingTest() { |
| 21 moveSelectionForwardByLineCommand(); |
| 22 moveSelectionLeftByCharacterCommand(); |
| 23 } |
| 24 |
| 25 </script> |
| 26 </head> |
| 27 <body> |
| 28 <p>Tests display caret direction (RTL) as per Input. |
| 29 </p> |
| 30 <div contenteditable id="root" class="editing"> |
| 31 <span id="test">Caret in RTL Language نلا</span> |
| 32 </div> |
| 33 |
| 34 <script> |
| 35 runEditingTest(); |
| 36 </script> |
| 37 |
| 38 </body> |
| 39 </html> |
OLD | NEW |