| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Notifications: ServiceWorkerRegistration.showNotification() shows not
ification with correct notification direction.</title> | 4 <title>Notifications: ServiceWorkerRegistration.showNotification() shows not
ification with correct notification direction.</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> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 var workerInfo = null; | 22 var workerInfo = null; |
| 23 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi
on(info) { | 23 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi
on(info) { |
| 24 workerInfo = info; | 24 workerInfo = info; |
| 25 | 25 |
| 26 // (1) Display a Web Notification from the document. | 26 // (1) Display a Web Notification from the document. |
| 27 return workerInfo.registration.showNotification(scope, { | 27 return workerInfo.registration.showNotification(scope, { |
| 28 dir: 'rtl' | 28 dir: 'rtl' |
| 29 }); | 29 }); |
| 30 }).then(function() { | 30 }).then(function() { |
| 31 // (2) Simulate a click on the notification that has been displaye
d. | 31 // (2) Simulate a click on the notification that has been displaye
d. |
| 32 testRunner.simulateWebNotificationClick(scope); | 32 testRunner.simulateWebNotificationClick(scope, -1 /* action_index
*/); |
| 33 | 33 |
| 34 workerInfo.port.addEventListener('message', function(event) { | 34 workerInfo.port.addEventListener('message', function(event) { |
| 35 if (typeof event.data != 'object' || !event.data.command) { | 35 if (typeof event.data != 'object' || !event.data.command) { |
| 36 assert_unreached('Received an invalid message from the Ser
vice Worker.'); | 36 assert_unreached('Received an invalid message from the Ser
vice Worker.'); |
| 37 return; | 37 return; |
| 38 } | 38 } |
| 39 | 39 |
| 40 // (3) Verify that the click event was received by the Service
Worker, | 40 // (3) Verify that the click event was received by the Service
Worker, |
| 41 // and that the correct direction was passed along. | 41 // and that the correct direction was passed along. |
| 42 assert_equals(event.data.command, 'click'); | 42 assert_equals(event.data.command, 'click'); |
| 43 assert_equals(event.data.notification.dir, 'rtl'); | 43 assert_equals(event.data.notification.dir, 'rtl'); |
| 44 | 44 |
| 45 test.done(); | 45 test.done(); |
| 46 }); | 46 }); |
| 47 }).catch(unreached_rejection(test)); | 47 }).catch(unreached_rejection(test)); |
| 48 | 48 |
| 49 }, 'Clicking on a notification displayed through showNotification() fires
a Service Worker event with the correct notification direction'); | 49 }, 'Clicking on a notification displayed through showNotification() fires
a Service Worker event with the correct notification direction'); |
| 50 </script> | 50 </script> |
| 51 </body> | 51 </body> |
| 52 </html> | 52 </html> |
| OLD | NEW |