Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: LayoutTests/http/tests/serviceworker/fetch-cors-xhr.html

Issue 468753003: SW tests update (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 467133002 and fix test Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>Service Worker: CORS XHR of fetch()</title> 2 <title>Service Worker: CORS XHR of fetch()</title>
3 <script src="../resources/testharness.js"></script> 3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script> 4 <script src="../resources/testharnessreport.js"></script>
5 <script src="resources/test-helpers.js?pipe=sub"></script> 5 <script src="resources/test-helpers.js?pipe=sub"></script>
6 <script> 6 <script>
7 async_test(function(t) { 7 async_test(function(t) {
8 var SCOPE = 'resources/fetch-cors-xhr-iframe.html'; 8 var SCOPE = 'resources/fetch-cors-xhr-iframe.html';
9 var SCRIPT = 'resources/fetch-rewrite-worker.js'; 9 var SCRIPT = 'resources/fetch-rewrite-worker.js';
10 var host_info = get_host_info(); 10 var host_info = get_host_info();
11 service_worker_unregister_and_register(t, SCRIPT, SCOPE) 11 service_worker_unregister_and_register(t, SCRIPT, SCOPE)
12 .then(function(registration) {
13 return wait_for_update(t, registration);
14 })
12 .then(function(sw) { 15 .then(function(sw) {
13 return wait_for_state(t, sw, 'activated'); 16 return wait_for_state(t, sw, 'activated');
14 }) 17 })
15 .then(function() { return with_iframe(SCOPE); }) 18 .then(function() { return with_iframe(SCOPE); })
16 .then(function(frame) { 19 .then(function(frame) {
17 return new Promise(function(resolve, reject) { 20 return new Promise(function(resolve, reject) {
18 var channel = new MessageChannel(); 21 var channel = new MessageChannel();
19 channel.port1.onmessage = t.step_func(function(e) { 22 channel.port1.onmessage = t.step_func(function(e) {
20 assert_equals(e.data.results, 'finish'); 23 assert_equals(e.data.results, 'finish');
21 service_worker_unregister_and_done(t, SCOPE); 24 service_worker_unregister_and_done(t, SCOPE);
22 }); 25 });
23 frame.contentWindow.postMessage({}, 26 frame.contentWindow.postMessage({},
24 [channel.port2], 27 [channel.port2],
25 host_info['HTTP_ORIGIN']); 28 host_info['HTTP_ORIGIN']);
26 }); 29 });
27 }) 30 })
28 .catch(unreached_rejection(t)); 31 .catch(unreached_rejection(t));
29 }, 'Verify CORS XHR of fetch() in a Service Worker'); 32 }, 'Verify CORS XHR of fetch() in a Service Worker');
30 </script> 33 </script>
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/serviceworker/fetch-canvas-tainting.html ('k') | LayoutTests/http/tests/serviceworker/fetch-csp.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698