| <html> |
| <head> |
| |
| <style> |
| .editing { |
| border: 2px solid red; |
| padding: 12px; |
| font-size: 24px; |
| } |
| </style> |
| <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script> |
| |
| <script> |
| |
| function editingTest() { |
| for (i = 0; i < 12; i++) { |
| moveSelectionForwardByCharacterCommand(); |
| } |
| } |
| |
| </script> |
| </head> |
| <body> |
| <div id="root" class="editing" style="-webkit-user-modify: read-write; -webkit-line-break: normal; width: 200px; direction: rtl; font-family: Lucida Grande;"> |
| <span id="test">before אחרי אנציקלופדיה</span> |
| </div> |
| |
| <script> |
| runEditingTest(); |
| </script> |
| |
| </body> |
| </html> |