OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <title>Service Worker: Interfaces</title> | 2 <title>Service Worker: Interfaces</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/interfaces.js"></script> | 5 <script src="resources/interfaces.js"></script> |
6 <script src="resources/test-helpers.js"></script> | 6 <script src="resources/test-helpers.js"></script> |
7 <script> | 7 <script> |
8 | 8 |
9 test(function() { | 9 test(function() { |
10 var EVENT_HANDLER = 'object'; | 10 var EVENT_HANDLER = 'object'; |
11 verify_interface( | 11 verify_interface( |
12 'ServiceWorkerContainer', navigator.serviceWorker, | 12 'ServiceWorkerContainer', navigator.serviceWorker, |
13 { | 13 { |
14 register: 'function', | 14 register: 'function', |
15 getRegistration: 'function', | 15 getRegistration: 'function', |
16 oncontrollerchange: EVENT_HANDLER | 16 oncontrollerchange: EVENT_HANDLER, |
| 17 onmessage: EVENT_HANDLER |
17 }); | 18 }); |
18 }, 'Interfaces and attributes of ServiceWorkerContainer'); | 19 }, 'Interfaces and attributes of ServiceWorkerContainer'); |
19 | 20 |
20 async_test(function(t) { | 21 async_test(function(t) { |
21 var EVENT_HANDLER = 'object'; | 22 var EVENT_HANDLER = 'object'; |
22 var scope = 'resources/scope/interfaces-and-attributes'; | 23 var scope = 'resources/scope/interfaces-and-attributes'; |
23 | 24 |
24 service_worker_unregister_and_register( | 25 service_worker_unregister_and_register( |
25 t, 'resources/empty-worker.js', scope) | 26 t, 'resources/empty-worker.js', scope) |
26 .then(function(registration) { | 27 .then(function(registration) { |
(...skipping 20 matching lines...) Expand all Loading... |
47 t.done(); | 48 t.done(); |
48 }) | 49 }) |
49 .catch(unreached_rejection(t)); | 50 .catch(unreached_rejection(t)); |
50 }, 'Interfaces and attributes of ServiceWorker'); | 51 }, 'Interfaces and attributes of ServiceWorker'); |
51 | 52 |
52 service_worker_test( | 53 service_worker_test( |
53 'resources/interfaces-worker.js', | 54 'resources/interfaces-worker.js', |
54 'Interfaces and attributes in ServiceWorkerGlobalScope'); | 55 'Interfaces and attributes in ServiceWorkerGlobalScope'); |
55 | 56 |
56 </script> | 57 </script> |
OLD | NEW |