| Index: content/test/data/service_worker/fetch_event_respond_with_fetch.js
|
| diff --git a/mojo/shell/background/tests/test.mojom b/content/test/data/service_worker/fetch_event_respond_with_fetch.js
|
| similarity index 68%
|
| copy from mojo/shell/background/tests/test.mojom
|
| copy to content/test/data/service_worker/fetch_event_respond_with_fetch.js
|
| index a021d707cab44c0de225c26f85f8d07474bdea89..df76d0a094fd0d876c78cc9f327df6e213e056c2 100644
|
| --- a/mojo/shell/background/tests/test.mojom
|
| +++ b/content/test/data/service_worker/fetch_event_respond_with_fetch.js
|
| @@ -2,8 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -module mojo.shell.mojom;
|
| -
|
| -interface TestService {
|
| - Test() => ();
|
| +this.onfetch = function(event) {
|
| + event.respondWith(fetch(event.request));
|
| };
|
|
|