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

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

Issue 573293005: syncxhr doesn't deadlock layout test (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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)
horo 2014/09/18 01:04:29 nit: Indent two spaces. http://www.chromium.org/bl
3 return;
4 event.respondWith(fetch('404resource?bustcache=' + Date.now()));
5 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698