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

Side by Side Diff: LayoutTests/http/tests/serviceworker/resources/hello-world-worker.js

Issue 304233017: ServiceWorker: Add layout tests for fetch event response (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 self.addEventListener('fetch', function(event) {
2 event.respondWith(new Response(new Blob(["hello, world"])));
jsbell 2014/06/02 23:27:34 This is just so awesome to see working! :)
falken 2014/06/03 02:26:30 Yay!
3 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698