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

Unified Diff: chrome/test/data/extensions/api_test/executescript/navigation_race/test.js

Issue 2847313002: Update some host_resolver()->AddRules in chrome/browser. (Closed)
Patch Set: Created 3 years, 8 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/process_management_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/executescript/navigation_race/test.js
diff --git a/chrome/test/data/extensions/api_test/executescript/navigation_race/test.js b/chrome/test/data/extensions/api_test/executescript/navigation_race/test.js
index fb4f7e0166bdccbad7ae3da6f47b1c021a195d20..b0c837253a796eaad442fe269b241e9c65074336 100644
--- a/chrome/test/data/extensions/api_test/executescript/navigation_race/test.js
+++ b/chrome/test/data/extensions/api_test/executescript/navigation_race/test.js
@@ -4,7 +4,7 @@
chrome.test.getConfig(function(config) {
var path = "/extensions/test_file.txt";
- var urlA = "http://a.com:" + config.testServer.port + path;
+ var urlC = "http://c.com:" + config.testServer.port + path;
var urlB = "http://b.com:" + config.testServer.port + path;
var testTabId;
@@ -18,7 +18,7 @@ chrome.test.getConfig(function(config) {
// permission to run it.
if (chrome.runtime.lastError) {
chrome.test.assertLastError(
- 'Cannot access contents of url "' + urlA +
+ 'Cannot access contents of url "' + urlC +
'". Extension manifest must request permission to access this ' +
'host.');
chrome.test.notifyPass();
@@ -36,7 +36,7 @@ chrome.test.getConfig(function(config) {
}
chrome.tabs.onUpdated.addListener(onTabUpdated);
- chrome.tabs.create({url: urlA}, function(tab) {
+ chrome.tabs.create({url: urlC}, function(tab) {
testTabId = tab.id;
});
});
« no previous file with comments | « chrome/browser/extensions/process_management_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698