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

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

Issue 3061041: Add the definition of the webRequest and webNavigation APIs. (Closed)
Patch Set: updates Created 10 years, 5 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/test/data/extensions/api_test/webrequest/api/manifest.json ('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/api/test.html
diff --git a/chrome/test/data/extensions/api_test/webrequest/api/test.html b/chrome/test/data/extensions/api_test/webrequest/api/test.html
new file mode 100644
index 0000000000000000000000000000000000000000..218d582a65541467850e58f545c9a850e4f5837d
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/webrequest/api/test.html
@@ -0,0 +1,15 @@
+<script>
+chrome.experimental.webRequest.onBeforeRequest.addListener(
+ function(details) {});
+chrome.experimental.webRequest.onRequestSent.addListener(
+ function(details) {});
+chrome.experimental.webRequest.onHeadersReceived.addListener(
+ function(details) {});
+chrome.experimental.webRequest.onBeforeRedirect.addListener(
+ function(details) {});
+chrome.experimental.webRequest.onCompleted.addListener(
+ function(details) {});
+chrome.experimental.webRequest.onErrorOccurred.addListener(
+ function(details) {});
+chrome.test.notifyPass();
+</script>
« no previous file with comments | « chrome/test/data/extensions/api_test/webrequest/api/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698