| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helper-script.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helper-script.js b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helper-script.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5ecaa9e36166395c857f22f1eae7fddba2fca5f1
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/foreign-fetch-helper-script.js
|
| @@ -0,0 +1,11 @@
|
| +function handle_message(e) {
|
| + fetch(e.data.url)
|
| + .then(response => response.text())
|
| + .then(text => e.ports[0].postMessage('Success: ' + text))
|
| + .catch(error => e.ports[0].postMessage('Error: ' + error));
|
| +}
|
| +
|
| +self.onmessage = handle_message;
|
| +self.onconnect = e => {
|
| + e.ports[0].onmessage = handle_message;
|
| +};
|
|
|