Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-request-xhr-sync.https.html |
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-request-xhr-sync.https.html b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-request-xhr-sync.https.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f3b693c38bdec0d1b50e26c407e8a589cd4758dd |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-request-xhr-sync.https.html |
| @@ -0,0 +1,39 @@ |
| +<!DOCTYPE html> |
| +<title>Service Worker: Synchronous XHR doesn't deadlock</title> |
|
falken
2017/05/29 04:22:15
is intercepted
mike3
2017/05/29 16:14:21
Done.
|
| +<script src="/resources/testharness.js"></script> |
| +<script src="/resources/testharnessreport.js"></script> |
| +<script src="resources/test-helpers.sub.js"></script> |
| +<script> |
| +'use strict'; |
| + |
| +promise_test(function(t) { |
| + var url = 'resources/fetch-request-xhr-sync-worker.js'; |
| + var scope = 'resources/fetch-request-xhr-sync-iframe.html'; |
| + |
| + return service_worker_unregister_and_register(t, url, scope) |
| + .then(function(registration) { |
| + t.add_cleanup(function() { |
| + registration.unregister(); |
| + }); |
| + |
| + return wait_for_state(t, registration.installing, 'activated'); |
| + }) |
| + .then(function() { return with_iframe(scope); }) |
| + .then(function(frame) { |
| + t.add_cleanup(function() { |
| + frame.remove(); |
| + }); |
| + |
| + return new Promise(function(resolve, reject) { |
| + setTimeout(function() { |
| + try { |
| + frame.contentWindow.performSyncXHR(); |
| + resolve(); |
| + } catch (err) { |
| + reject(err); |
| + } |
| + }, 0); |
| + }); |
| + }); |
| + }, 'Verify SyncXHR does not deadlock'); |
|
falken
2017/05/29 04:22:15
Verify SyncXHR is intercepted
mike3
2017/05/29 16:14:21
Done.
|
| +</script> |