| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helpers.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helpers.js b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helpers.js
|
| deleted file mode 100644
|
| index eae9f4e1255563c6ec4a2996c95946c401f87932..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helpers.js
|
| +++ /dev/null
|
| @@ -1,21 +0,0 @@
|
| -// Common helper functions for foreign fetch tests.
|
| -
|
| -// Installs a service worker on a different origin. Both |worker| and |scope|
|
| -// are resolved relative to the /serviceworker/resources/ directory on a
|
| -// remote origin.
|
| -function install_cross_origin_worker(
|
| - t, worker, scope, origin = get_host_info().HTTPS_REMOTE_ORIGIN) {
|
| - return with_iframe(origin +
|
| - '/serviceworker/resources/install-worker-helper.html')
|
| - .then(frame => new Promise((resolve, reject) => {
|
| - var channel = new MessageChannel();
|
| - frame.contentWindow.postMessage({worker: worker,
|
| - options: {scope: scope},
|
| - port: channel.port1},
|
| - '*', [channel.port1]);
|
| - channel.port2.onmessage = reply => {
|
| - if (reply.data == 'success') resolve();
|
| - else reject(reply.data);
|
| - };
|
| - }));
|
| -}
|
|
|