Removed 'anonymous' from namespace, added whitespace in thread_restrictions.cc
[chromium-blink-merge.git] / content / test / data / service_worker / fetch_event_reload.js
blob0e21d3f6e3f1106a05313d97b037724b55396ff3
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 this.onfetch = function(event) {
6 var headers = new Headers;
7 headers.set('Content-Type', 'text/html; charset=UTF-8');
8 var blob = new Blob(['<title>reload='+ event.isReload + '</title>']);
9 var response = new Response(blob);
10 event.respondWith(response);