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

Unified Diff: chrome/test/data/extensions/api_test/webrequest/test_declarative.js

Issue 10012004: Implemented proper support for checking schemes and requested resource types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renamed 'scheme' to 'schemes' Created 8 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/common/extensions/docs/experimental.webRequest.html ('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_declarative.js
diff --git a/chrome/test/data/extensions/api_test/webrequest/test_declarative.js b/chrome/test/data/extensions/api_test/webrequest/test_declarative.js
index 926998c1f2deb5f9614af4608e3c2ac9e77f0fd6..dfcd9e8b8a61f4357c9bb68792f5f4592292587d 100644
--- a/chrome/test/data/extensions/api_test/webrequest/test_declarative.js
+++ b/chrome/test/data/extensions/api_test/webrequest/test_declarative.js
@@ -24,7 +24,10 @@ runTests([
[ ["onCompleted"] ]);
onRequest.addRules(
- [ {'conditions': [new RequestMatcher({'path_suffix': ".html"})],
+ [ {'conditions': [
+ new RequestMatcher({'path_suffix': ".html",
+ 'resourceType': ["main_frame"],
+ 'schemes': ["chrome-extension"]})],
'actions': [new CancelRequest()]}
],
function() {navigateAndWait(getURL("simpleLoad/a.html"));}
@@ -82,4 +85,4 @@ runTests([
function() {navigateAndWait(getURL("complexLoad/a.html"));}
);
},
- ]);
+ ]);
« no previous file with comments | « chrome/common/extensions/docs/experimental.webRequest.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698