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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/extendable-event-async-waituntil.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 <script src="../resources/testharness.js"></script> 2 <script src="/resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="resources/testharness-helpers.js"></script>
4 <script src="resources/test-helpers.js"></script> 4 <script src="/resources/testharnessreport.js"></script>
5 <script src="resources/test-helpers.sub.js"></script>
5 <script> 6 <script>
6 promise_test(function(t) { 7 promise_test(function(t) {
7 var script = 'resources/extendable-event-async-waituntil.js'; 8 var script = 'resources/extendable-event-async-waituntil.js';
8 var scope = 'resources/async-waituntil'; 9 var scope = 'resources/async-waituntil';
9 var worker; 10 var worker;
10 11
11 return service_worker_unregister_and_register(t, script, scope) 12 return service_worker_unregister_and_register(t, script, scope)
12 .then(function(registration) { 13 .then(function(registration) {
13 worker = registration.installing; 14 worker = registration.installing;
14 return wait_for_state(t, worker, 'activated'); 15 return wait_for_state(t, worker, 'activated');
15 }) 16 })
16 .then(function() { 17 .then(function() {
17 var channel = new MessageChannel(); 18 var channel = new MessageChannel();
18 var saw_message = new Promise(function(resolve) { 19 var saw_message = new Promise(function(resolve) {
19 channel.port1.onmessage = function(e) { resolve(e.data); } 20 channel.port1.onmessage = function(e) { resolve(e.data); }
20 }); 21 });
21 worker.postMessage({port: channel.port2}, [channel.port2]); 22 worker.postMessage({port: channel.port2}, [channel.port2]);
22 return saw_message; 23 return saw_message;
23 }) 24 })
24 .then(function(message) { 25 .then(function(message) {
25 assert_equals(message, 'PASS'); 26 assert_equals(message, 'PASS');
26 return service_worker_unregister_and_done(t, scope); 27 return service_worker_unregister_and_done(t, scope);
27 }) 28 })
28 }, 'Calling waitUntil asynchronously throws an exception'); 29 }, 'Calling waitUntil asynchronously throws an exception');
29 </script> 30 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698