Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: LayoutTests/editing/selection/css-pseudo-element.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698