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

Side by Side Diff: LayoutTests/editing/selection/extend-after-mouse-selection.html

Issue 58533003: Move fast/js/resources files to resources. (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 <html> 1 <html>
2 <head> 2 <head>
3 3
4 <style> 4 <style>
5 .editing { 5 .editing {
6 border: 2px solid red; 6 border: 2px solid red;
7 font-size: 24px; 7 font-size: 24px;
8 } 8 }
9 </style> 9 </style>
10 <script src="../editing.js"></script> 10 <script src="../editing.js"></script>
11 <script src="../../fast/js/resources/js-test-pre.js"></script> 11 <script src="../../resources/js-test.js"></script>
12 <script src="resources/js-test-selection-shared.js"></script> 12 <script src="resources/js-test-selection-shared.js"></script>
13 13
14 <script> 14 <script>
15 15
16 function editingTest(editingBehavior) { 16 function editingTest(editingBehavior) {
17 17
18 if (window.internals) 18 if (window.internals)
19 internals.settings.setEditingBehavior(editingBehavior); 19 internals.settings.setEditingBehavior(editingBehavior);
20 20
21 var startTarget = document.getElementById('start'); 21 var startTarget = document.getElementById('start');
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 <script> 76 <script>
77 editingTest("mac"); 77 editingTest("mac");
78 editingTest("win"); 78 editingTest("win");
79 editingTest("unix"); 79 editingTest("unix");
80 editingTest("android"); 80 editingTest("android");
81 </script> 81 </script>
82 82
83 </body> 83 </body>
84 </html> 84 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698