Index: chrome/test/data/extensions/api_test/webrequest/test_blocking.html |
diff --git a/chrome/test/data/extensions/api_test/webrequest/test_blocking.html b/chrome/test/data/extensions/api_test/webrequest/test_blocking.html |
index c6bc1665714a3e64c9660e97d77d8de8e77ea122..4d4da72a924742e78b9a7a2f19be14a01f971b44 100644 |
--- a/chrome/test/data/extensions/api_test/webrequest/test_blocking.html |
+++ b/chrome/test/data/extensions/api_test/webrequest/test_blocking.html |
@@ -19,8 +19,8 @@ runTests([ |
method: "GET", |
tabId: tabId, |
type: "main_frame", |
- url: getURL("complexLoad/a.html"), |
- frameUrl: getURL("complexLoad/a.html") |
+ url: getURL("complexLoad/b.html"), |
+ frameUrl: getURL("complexLoad/b.html") |
}, |
retval: {cancel: true} |
}, |
@@ -28,7 +28,7 @@ runTests([ |
{ label: "onErrorOccurred", |
event: "onErrorOccurred", |
details: { |
- url: getURL("complexLoad/a.html"), |
+ url: getURL("complexLoad/b.html"), |
fromCache: false, |
error: "net::ERR_EMPTY_RESPONSE" |
// Request to chrome-extension:// url has no IP. |
@@ -40,8 +40,8 @@ runTests([ |
], |
{}, // filter |
["blocking"]); |
- console.log("load canc: navigating to a"); |
- navigateAndWait(getURL("complexLoad/a.html")); |
+ console.log("load canc: navigating to b"); |
+ navigateAndWait(getURL("complexLoad/b.html")); |
}, |
// Navigates to a page with a blocking handler that redirects to a different |