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

Unified Diff: chrome/test/data/extensions/api_test/webrequest/events/xhr/a.html

Issue 7599027: Add support for XMLHttpRequests to the webRequest API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
Index: chrome/test/data/extensions/api_test/webrequest/events/xhr/a.html
diff --git a/chrome/test/data/extensions/api_test/webrequest/events/xhr/a.html b/chrome/test/data/extensions/api_test/webrequest/events/xhr/a.html
new file mode 100644
index 0000000000000000000000000000000000000000..0f780e7de936a57db984a16d4d060a1677e172c7
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/webrequest/events/xhr/a.html
@@ -0,0 +1,12 @@
+<html>
+<head>
+<script>
+function sendXHR() {
+ var req = new XMLHttpRequest();
+ req.open("GET", "data.json", true);
+ req.send(null);
+}
+</script>
+</head>
+<body onload="sendXHR()"></body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698