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()); |
}, |