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

Side by Side Diff: LayoutTests/http/tests/serviceworker/chromium/resources/memory-cache-worker.js

Issue 632213002: Fetcher: Disable memory caching when Service Worker handles a request (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: tweak test Created 6 years, 2 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
OLDNEW
(Empty)
1 onfetch = function(event) {
2 if (event.request.url.indexOf('memory-cache.json') != -1) {
3 event.respondWith(
4 new Response("callback({ src : 'service worker' })"));
5 }
6 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698