OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 if (window.testRunner) | 4 if (window.testRunner) |
5 testRunner.dumpEditingCallbacks(); | 5 testRunner.dumpEditingCallbacks(); |
6 </script> | 6 </script> |
7 | 7 |
8 | 8 |
9 <script> | 9 <script> |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 testRunner.execCommand("MoveForward"); | 29 testRunner.execCommand("MoveForward"); |
30 testRunner.execCommand("MoveLeft"); | 30 testRunner.execCommand("MoveLeft"); |
31 testRunner.execCommand("MoveRight"); | 31 testRunner.execCommand("MoveRight"); |
32 testRunner.execCommand("MoveToBeginningOfDocument"); | 32 testRunner.execCommand("MoveToBeginningOfDocument"); |
33 testRunner.execCommand("MoveToBeginningOfLine"); | 33 testRunner.execCommand("MoveToBeginningOfLine"); |
34 testRunner.execCommand("MoveToBeginningOfParagraph"); | 34 testRunner.execCommand("MoveToBeginningOfParagraph"); |
35 testRunner.execCommand("MoveToEndOfDocument"); | 35 testRunner.execCommand("MoveToEndOfDocument"); |
36 testRunner.execCommand("MoveToEndOfLine"); | 36 testRunner.execCommand("MoveToEndOfLine"); |
37 testRunner.execCommand("MoveToEndOfParagraph"); | 37 testRunner.execCommand("MoveToEndOfParagraph"); |
38 testRunner.execCommand("MoveUp"); | 38 testRunner.execCommand("MoveUp"); |
| 39 testRunner.execCommand("MoveParagraphBackward"); |
| 40 testRunner.execCommand("MoveParagraphForward"); |
39 testRunner.execCommand("MoveWordBackward"); | 41 testRunner.execCommand("MoveWordBackward"); |
40 testRunner.execCommand("MoveWordForward"); | 42 testRunner.execCommand("MoveWordForward"); |
41 testRunner.execCommand("MoveWordLeft"); | 43 testRunner.execCommand("MoveWordLeft"); |
42 testRunner.execCommand("MoveWordRight"); | 44 testRunner.execCommand("MoveWordRight"); |
43 testRunner.execCommand("PageDown"); | 45 testRunner.execCommand("PageDown"); |
44 testRunner.execCommand("PageUp"); | 46 testRunner.execCommand("PageUp"); |
45 } | 47 } |
46 | 48 |
47 </script> | 49 </script> |
48 </head> | 50 </head> |
49 <body style="overflow:hidden"> | 51 <body style="overflow:hidden"> |
50 This tests whether certain NSResponder methods that should only operate on edita
ble regions modify a selection that is not in an editable region.<br> | 52 This tests whether certain NSResponder methods that should only operate on edita
ble regions modify a selection that is not in an editable region.<br> |
51 This is a para<span style="color:blue;" id="start">g</span>raph.<br> | 53 This is a para<span style="color:blue;" id="start">g</span>raph.<br> |
52 Some text<br> | 54 Some text<br> |
53 Some text<br> | 55 Some text<br> |
54 Some text<br> | 56 Some text<br> |
55 Some text<br> | 57 Some text<br> |
56 This is a paragraph. | 58 This is a paragraph. |
57 <script> | 59 <script> |
58 editingTest(); | 60 editingTest(); |
59 </script> | 61 </script> |
60 </html> | 62 </html> |
OLD | NEW |