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

Side by Side Diff: LayoutTests/fast/url/safari-extension.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
« no previous file with comments | « LayoutTests/fast/url/relative-win.html ('k') | LayoutTests/fast/url/script-tests/TEMPLATE.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 <script src="resources/utilities.js"></script> 6 <script src="resources/utilities.js"></script>
7 </head> 7 </head>
8 <body> 8 <body>
9 9
10 <script> 10 <script>
11 description("Verify the canonicalization of Safari Extension URLs.") 11 description("Verify the canonicalization of Safari Extension URLs.")
12 12
13 safariExtensionTestSet = [ 13 safariExtensionTestSet = [
14 ['safari-extension://', 'safari-extension://'], 14 ['safari-extension://', 'safari-extension://'],
15 ['safari-extension://com.apple/', 'safari-extension://com.apple/'], 15 ['safari-extension://com.apple/', 'safari-extension://com.apple/'],
16 ['safari-extension://com.ApPlE/', 'safari-extension://com.ApPlE/'], 16 ['safari-extension://com.ApPlE/', 'safari-extension://com.ApPlE/'],
17 ['safari-extension://com.fĂȘte/', 'safari-extension://com.f%C3%AAte/'], 17 ['safari-extension://com.fĂȘte/', 'safari-extension://com.f%C3%AAte/'],
18 ] 18 ]
19 19
20 for (var i = 0; i < safariExtensionTestSet.length; ++i) { 20 for (var i = 0; i < safariExtensionTestSet.length; ++i) {
21 src = canonicalize(safariExtensionTestSet[i][0]); 21 src = canonicalize(safariExtensionTestSet[i][0]);
22 expected = safariExtensionTestSet[i][1]; 22 expected = safariExtensionTestSet[i][1];
23 shouldBe('src', 'expected'); 23 shouldBe('src', 'expected');
24 } 24 }
25 25
26 successfullyParsed = true; 26 successfullyParsed = true;
27 </script> 27 </script>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/url/relative-win.html ('k') | LayoutTests/fast/url/script-tests/TEMPLATE.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698