| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/foreign-fetch-basics.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/foreign-fetch-basics.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/foreign-fetch-basics.html
|
| index a782978ac275a6a618c178a4a2f8cc69594cbfb6..2828f86a9366e8a48008234eabc8943be583f112 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/foreign-fetch-basics.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/serviceworker/foreign-fetch-basics.html
|
| @@ -117,5 +117,14 @@ promise_test(t => {
|
| });
|
| }, 'Service Worker does not intercept navigations.');
|
|
|
| +promise_test(t => {
|
| + var scope = 'simple.txt?fallback';
|
| + var remote_url =
|
| + host_info.HTTPS_REMOTE_ORIGIN + '/serviceworker/resources/' + scope;
|
| + return install_cross_origin_worker(t, worker_for_scopes(['']), scope)
|
| + .then(() => fetch(remote_url))
|
| + .then(response => {});
|
| + }, 'Service Worker that fallback to network should not crash.');
|
| +
|
| </script>
|
| </body>
|
|
|