Chromium Code Reviews| Index: LayoutTests/http/tests/serviceworker/resources/hello-world-worker.js |
| diff --git a/LayoutTests/http/tests/serviceworker/resources/hello-world-worker.js b/LayoutTests/http/tests/serviceworker/resources/hello-world-worker.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..699c50206654b34f11840d8fd76bb560d24d7470 |
| --- /dev/null |
| +++ b/LayoutTests/http/tests/serviceworker/resources/hello-world-worker.js |
| @@ -0,0 +1,3 @@ |
| +self.addEventListener('fetch', function(event) { |
| + event.respondWith(new Response(new Blob(["hello, world"]))); |
| +}); |