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

Side by Side Diff: LayoutTests/editing/shadow/compare-positions-in-nested-shadow.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../../fast/dom/resources/event-sender-util.js"></script> 4 <script src="../../fast/dom/resources/event-sender-util.js"></script>
5 <script src="../../fast/js/resources/js-test-pre.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 6
7 <div id="host1"></div> 7 <div id="host1"></div>
8 <div id="host2"></div> 8 <div id="host2"></div>
9 <pre id="console"></pre> 9 <pre id="console"></pre>
10 10
11 <script> 11 <script>
12 function createBox(name) { 12 function createBox(name) {
13 var div = document.createElement('div'); 13 var div = document.createElement('div');
14 div.style.width = '100px'; 14 div.style.width = '100px';
15 div.style.height = '100px'; 15 div.style.height = '100px';
(...skipping 30 matching lines...) Expand all
46 46
47 shouldBe('selection2.anchorOffset', '5'); 47 shouldBe('selection2.anchorOffset', '5');
48 shouldBe('selection2.focusOffset', '0'); 48 shouldBe('selection2.focusOffset', '0');
49 } 49 }
50 50
51 var successfullyParsed = true; 51 var successfullyParsed = true;
52 </script> 52 </script>
53 53
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698