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

Unified Diff: chrome/test/data/extensions/api_test/webrequest/test_complex.html

Issue 7982023: Fixed ExtraInfoSpec flags for webRequest.onAuthRequired (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also improve browser tests Created 9 years, 3 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/extension_webrequest_api.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/webrequest/test_complex.html
diff --git a/chrome/test/data/extensions/api_test/webrequest/test_complex.html b/chrome/test/data/extensions/api_test/webrequest/test_complex.html
index eb4e7c53ae23b25a3accb83e8e70afa848dd90a7..58a580111081fd0ecf25b09423e1b0059fa19697 100644
--- a/chrome/test/data/extensions/api_test/webrequest/test_complex.html
+++ b/chrome/test/data/extensions/api_test/webrequest/test_complex.html
@@ -227,7 +227,8 @@ runTests([
isProxy: false,
scheme: "basic",
realm: "testrealm",
- challenger: {host: testServer, port: testServerPort}
+ challenger: {host: testServer, port: testServerPort},
+ responseHeadersExist: true
}
},
{ label: "onResponseStarted",
@@ -236,7 +237,8 @@ runTests([
url: getURLAuthRequired(),
fromCache: false,
statusCode: 401,
- ip: "127.0.0.1"
+ ip: "127.0.0.1",
+ responseHeadersExist: true
}
},
{ label: "onCompleted",
@@ -245,7 +247,8 @@ runTests([
url: getURLAuthRequired(),
fromCache: false,
statusCode: 401,
- ip: "127.0.0.1"
+ ip: "127.0.0.1",
+ responseHeadersExist: true
}
},
],
@@ -253,7 +256,7 @@ runTests([
["onBeforeRequest", "onBeforeSendHeaders", "onSendHeaders",
"onAuthRequired", "onResponseStarted", "onCompleted"]
],
- {}, []);
+ {}, ["responseHeaders"]);
navigateAndWait(getURLAuthRequired());
},
« no previous file with comments | « chrome/browser/extensions/extension_webrequest_api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698