blob: e8eb0b954e96e6a4400218391c368de54704d331 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
this.onfetch = function(event) {
var blob = new Blob(['<title>Title</title>']);
var response = new Response(blob, {
headers: { 'Content-Type': 'text/html' }
});
event.respondWith(response);
};