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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 shouldEvaluateTo(window.getSelection().anchorOffset.toString(), 1); | 108 shouldEvaluateTo(window.getSelection().anchorOffset.toString(), 1); |
109 window.getSelection().modify('move', 'left', 'character'); | 109 window.getSelection().modify('move', 'left', 'character'); |
110 shouldEvaluateTo(window.getSelection().anchorOffset.toString(), 11); | 110 shouldEvaluateTo(window.getSelection().anchorOffset.toString(), 11); |
111 window.getSelection().modify('move', 'left', 'character'); | 111 window.getSelection().modify('move', 'left', 'character'); |
112 shouldEvaluateTo(window.getSelection().anchorOffset.toString(), 1); | 112 shouldEvaluateTo(window.getSelection().anchorOffset.toString(), 1); |
113 window.getSelection().modify('move', 'right', 'character'); | 113 window.getSelection().modify('move', 'right', 'character'); |
114 shouldEvaluateTo(window.getSelection().anchorOffset.toString(), 11); | 114 shouldEvaluateTo(window.getSelection().anchorOffset.toString(), 11); |
115 | 115 |
116 | 116 |
117 </script> | 117 </script> |
118 <script src="../../fast/js/resources/js-test-post.js"></script> | |
119 </body> | 118 </body> |
120 </html> | 119 </html> |
OLD | NEW |