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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/fetch-cors-xhr.https.html

Issue 2415873002: Import w3c tests for the service workers (Closed)
Patch Set: Rebase Created 4 years, 2 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/get-host-info.js?pipe=sub"></script> 5 <script src="resources/get-host-info.sub.js"></script>
6 <script src="resources/test-helpers.js"></script> 6 <script src="resources/test-helpers.sub.js?pipe=sub"></script>
7 <body> 7 <body>
8 <script> 8 <script>
9 async_test(function(t) { 9 async_test(function(t) {
10 var SCOPE = 'resources/fetch-cors-xhr-iframe.html'; 10 var SCOPE = 'resources/fetch-cors-xhr-iframe.html';
11 var SCRIPT = 'resources/fetch-rewrite-worker.js'; 11 var SCRIPT = 'resources/fetch-rewrite-worker.js';
12 var host_info = get_host_info(); 12 var host_info = get_host_info();
13 13
14 login(t, host_info.HTTP_ORIGIN, host_info.HTTP_REMOTE_ORIGIN) 14 login_https(t)
15 .then(function() { 15 .then(function() {
16 return service_worker_unregister_and_register(t, SCRIPT, SCOPE); 16 return service_worker_unregister_and_register(t, SCRIPT, SCOPE);
17 }) 17 })
18 .then(function(registration) { 18 .then(function(registration) {
19 return wait_for_state(t, registration.installing, 'activated'); 19 return wait_for_state(t, registration.installing, 'activated');
20 }) 20 })
21 .then(function() { return with_iframe(SCOPE); }) 21 .then(function() { return with_iframe(SCOPE); })
22 .then(function(frame) { 22 .then(function(frame) {
23 return new Promise(function(resolve, reject) { 23 return new Promise(function(resolve, reject) {
24 var channel = new MessageChannel(); 24 var channel = new MessageChannel();
25 channel.port1.onmessage = t.step_func(function(e) { 25 channel.port1.onmessage = t.step_func(function(e) {
26 assert_equals(e.data.results, 'finish'); 26 assert_equals(e.data.results, 'finish');
27 frame.remove(); 27 frame.remove();
28 service_worker_unregister_and_done(t, SCOPE); 28 service_worker_unregister_and_done(t, SCOPE);
29 }); 29 });
30 frame.contentWindow.postMessage({}, 30 frame.contentWindow.postMessage({},
31 host_info['HTTP_ORIGIN'], 31 host_info['HTTPS_ORIGIN'],
32 [channel.port2]); 32 [channel.port2]);
33 }); 33 });
34 }) 34 })
35 .catch(unreached_rejection(t)); 35 .catch(unreached_rejection(t));
36 }, 'Verify CORS XHR of fetch() in a Service Worker'); 36 }, 'Verify CORS XHR of fetch() in a Service Worker');
37 </script> 37 </script>
38 </body> 38 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698