OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <style type="text/css"> /* pertinent to test cases */ | 5 <style type="text/css"> /* pertinent to test cases */ |
6 .quote:before { content: "*"; } | 6 .quote:before { content: "*"; } |
7 .quote:after { content: "*"; } | 7 .quote:after { content: "*"; } |
8 | 8 |
9 .bidi:before { content: "aפb"; } | 9 .bidi:before { content: "aפb"; } |
10 .bidi:after { content: "aפb"; } | 10 .bidi:after { content: "aפb"; } |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 edit.focus(); | 65 edit.focus(); |
66 | 66 |
67 for (var i = 0; i < 11; ++i) | 67 for (var i = 0; i < 11; ++i) |
68 window.getSelection().modify('move', 'right', 'character'); | 68 window.getSelection().modify('move', 'right', 'character'); |
69 | 69 |
70 for (var i = 0; i < 11; ++i) | 70 for (var i = 0; i < 11; ++i) |
71 window.getSelection().modify('move', 'left', 'character'); | 71 window.getSelection().modify('move', 'left', 'character'); |
72 | 72 |
73 | 73 |
74 </script> | 74 </script> |
75 <script src="../../fast/js/resources/js-test-post.js"></script> | |
76 </body> | 75 </body> |
77 </html> | 76 </html> |
OLD | NEW |