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

Unified Diff: LayoutTests/http/tests/serviceworker/resources/null-response-body-worker.js

Issue 304233017: ServiceWorker: Add layout tests for fetch event response (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: forgot null-response-body-worker.js Created 6 years, 7 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: LayoutTests/http/tests/serviceworker/resources/null-response-body-worker.js
diff --git a/LayoutTests/http/tests/serviceworker/resources/null-response-body-worker.js b/LayoutTests/http/tests/serviceworker/resources/null-response-body-worker.js
new file mode 100644
index 0000000000000000000000000000000000000000..680662266e30c34a268a4cb8fb574c9e3eaea3d1
--- /dev/null
+++ b/LayoutTests/http/tests/serviceworker/resources/null-response-body-worker.js
@@ -0,0 +1,3 @@
+self.addEventListener('fetch', function(event) {
+ event.respondWith(new Response(null));
+});

Powered by Google App Engine
This is Rietveld 408576698