| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Notifications: ServiceWorkerRegistration.showNotification().</title> | 4 <title>Notifications: ServiceWorkerRegistration.showNotification().</title> |
| 5 <script src="../resources/testharness.js"></script> | 5 <script src="../resources/testharness.js"></script> |
| 6 <script src="../resources/testharnessreport.js"></script> | 6 <script src="../resources/testharnessreport.js"></script> |
| 7 <script src="../serviceworker/resources/test-helpers.js"></script> | 7 <script src="../serviceworker/resources/test-helpers.js"></script> |
| 8 <script src="resources/test-helpers.js"></script> | 8 <script src="resources/test-helpers.js"></script> |
| 9 </head> | 9 </head> |
| 10 <body> | 10 <body> |
| 11 <script> | 11 <script> |
| 12 // Tests that the showNotification() function resolves a promise, that the | 12 // Tests that the showNotification() function resolves a promise, that the |
| 13 // notificationclick event gets fired on the Service Worker when we simula
te a | 13 // notificationclick event gets fired on the Service Worker when we simula
te a |
| 14 // click on it, and the notification can then be closed. This test require
s | 14 // click on it, and the notification can then be closed. This test require
s |
| 15 // the test runner. | 15 // the test runner. |
| 16 async_test(function(test) { | 16 async_test(function(test) { |
| 17 var scope = 'resources/scope/serviceworkerregistration-document-close'
, | 17 var scope = 'resources/scope/serviceworkerregistration-document-close'
, |
| 18 script = 'resources/instrumentation-service-worker.js'; | 18 script = 'resources/instrumentation-service-worker.js'; |
| 19 | 19 |
| 20 testRunner.setPermission('notifications', 'granted', location.origin,
location.origin); | 20 testRunner.setPermission('notifications', 'granted', location.origin,
location.origin); |
| 21 testRunner.grantWebNotificationPermission(location.origin, true); | |
| 22 | 21 |
| 23 var workerInfo = null; | 22 var workerInfo = null; |
| 24 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi
on(info) { | 23 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi
on(info) { |
| 25 workerInfo = info; | 24 workerInfo = info; |
| 26 | 25 |
| 27 // (1) Display a Web Notification from the document. | 26 // (1) Display a Web Notification from the document. |
| 28 assert_inherits(workerInfo.registration, 'showNotification', 'show
Notification() must be exposed.'); | 27 assert_inherits(workerInfo.registration, 'showNotification', 'show
Notification() must be exposed.'); |
| 29 return workerInfo.registration.showNotification(scope, { | 28 return workerInfo.registration.showNotification(scope, { |
| 30 body: 'ACTION:CLOSE', | 29 body: 'ACTION:CLOSE', |
| 31 icon: '/icon.png' | 30 icon: '/icon.png' |
| (...skipping 17 matching lines...) Expand all Loading... |
| 49 // Notification.get() getter, which is not implemented yet. | 48 // Notification.get() getter, which is not implemented yet. |
| 50 | 49 |
| 51 test.done(); | 50 test.done(); |
| 52 }); | 51 }); |
| 53 }).catch(unreached_rejection(test)); | 52 }).catch(unreached_rejection(test)); |
| 54 | 53 |
| 55 }, 'Clicking on a notification displayed through showNotification() fires
a Service Worker event, and can be closed there.'); | 54 }, 'Clicking on a notification displayed through showNotification() fires
a Service Worker event, and can be closed there.'); |
| 56 </script> | 55 </script> |
| 57 </body> | 56 </body> |
| 58 </html> | 57 </html> |
| OLD | NEW |