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 verifyInterface( | 10 verifyInterface( |
(...skipping 24 matching lines...) Expand all Loading... |
35 onupdatefound: EVENT_HANDLER | 35 onupdatefound: EVENT_HANDLER |
36 }); | 36 }); |
37 return wait_for_update(t, registration); | 37 return wait_for_update(t, registration); |
38 }) | 38 }) |
39 .then(function(worker) { | 39 .then(function(worker) { |
40 verifyInterface( | 40 verifyInterface( |
41 'ServiceWorker', worker, | 41 'ServiceWorker', worker, |
42 { | 42 { |
43 scriptURL: 'string', | 43 scriptURL: 'string', |
44 state: 'string', | 44 state: 'string', |
45 terminate: 'function', | |
46 onstatechange: EVENT_HANDLER | 45 onstatechange: EVENT_HANDLER |
47 }); | 46 }); |
48 return registration.unregister(); | 47 return registration.unregister(); |
49 }) | 48 }) |
50 .then(function() { | 49 .then(function() { |
51 t.done(); | 50 t.done(); |
52 }) | 51 }) |
53 .catch(unreached_rejection(t)); | 52 .catch(unreached_rejection(t)); |
54 }, 'Interfaces and attributes of ServiceWorker'); | 53 }, 'Interfaces and attributes of ServiceWorker'); |
55 | 54 |
56 service_worker_test( | 55 service_worker_test( |
57 'resources/interfaces-worker.js', | 56 'resources/interfaces-worker.js', |
58 'Interfaces and attributes in ServiceWorkerGlobalScope'); | 57 'Interfaces and attributes in ServiceWorkerGlobalScope'); |
59 | 58 |
60 </script> | 59 </script> |
OLD | NEW |