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.
4
5this.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);
11};
12