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..08d329b6b02391f0fbd9f7849f86b9c130e52106 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/fetch-request-xhr-sync.https.html |
| @@ -0,0 +1,53 @@ |
| +<!DOCTYPE html> |
| +<title>Service Worker: Synchronous XHR is intercepted</title> |
| +<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'; |
| + var non_existent_file = 'non-existent-file.txt?bustcache=' + Date.now(); |
|
falken
2017/06/01 03:57:11
By the way: do you know why this bustcache= thing
mike3
2017/06/01 15:01:04
Now that you mention it, it looks like a vestige o
|
| + |
| + 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() { |
| + var xhr; |
| + try { |
| + xhr = frame.contentWindow.performSyncXHR(non_existent_file); |
| + resolve(xhr); |
| + } catch (err) { |
| + reject(err); |
| + } |
| + }, 0); |
| + }) |
| + }) |
| + .then(function(xhr) { |
| + assert_equals( |
| + xhr.status, |
| + 200, |
| + 'HTTP response status code for intercepted request' |
| + ); |
| + assert_equals( |
| + xhr.responseText, |
| + 'Response from service worker', |
| + 'HTTP response text for intercepted request' |
| + ); |
| + }); |
| + }, 'Verify SyncXHR is intercepted'); |
| +</script> |