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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/fetch-request-xhr-sync-worker.js

Issue 2907443002: Upstream service worker "XHR" test to WPT (Closed)
Patch Set: Incorporate review feedback 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 'use strict';
2
3 self.onfetch = function(event) {
4 if (event.request.url.indexOf('fetch-request-xhr-sync-data.txt') !== -1) {
5 event.respondWith(new Response('hello'));
falken 2017/05/30 01:08:41 how about changing this string to 'PASS'
mike3 2017/05/30 14:48:15 It probably doesn't matter as much given the chang
6 }
7 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698