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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/sync-xhr-doesnt-deadlock.js

Issue 2907443002: Upstream service worker "XHR" test to WPT (Closed)
Patch Set: Simplify request URL and remove outdated reference Created 3 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
OLDNEW
(Empty)
1 self.onfetch = function(event) {
2 if (event.request.url.indexOf('sync-xhr-doesnt-deadlock.data') == -1)
3 return;
4 event.respondWith(fetch('404resource?bustcache=' + Date.now()));
5 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698