Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / extend-selection-bidi.html
blob085c40f594d3b121a1250d285ff4bacc1de0ec76
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <style>
6 .editing {
7 border: 2px solid red;
8 padding: 12px;
9 font-size: 24px;
12 .selected {
13 background-color: #afdaff;
15 </style>
16 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
18 <script>
20 function editingTest() {
21 for (i = 0; i < 9; i++) {
22 extendSelectionForwardByCharacterCommand();
26 </script>
28 <title>Bidi Extend Selection Test</title>
29 </head>
30 <body>
31 The selection range in the red box should look like this:&nbsp;&nbsp;
32 <span class="selected">abc אבג 1</span>23 דהו def
33 <br><br>
35 <div contenteditable id="root" class="editing">
36 <span id="test">abc אבג 123 דהו def</span>
37 </div>
39 <script>
40 runEditingTest();
41 </script>
43 </body>
44 </html>