| Index: chrome/test/data/notifications/platform_notification_service.html
|
| diff --git a/chrome/test/data/notifications/platform_notification_service.html b/chrome/test/data/notifications/platform_notification_service.html
|
| index 60e476342a9ca0bbd51598cc59656f63d55bbf93..88b2ac3e4c5f1cfe8c41ee8be80bf3ac7688ba7d 100644
|
| --- a/chrome/test/data/notifications/platform_notification_service.html
|
| +++ b/chrome/test/data/notifications/platform_notification_service.html
|
| @@ -116,6 +116,17 @@
|
| });
|
| }
|
|
|
| + // Displays a persistent notification with a reply button.
|
| + function DisplayPersistentNotificationWithReplyButton() {
|
| + DisplayPersistentNotification('action_button_click', {
|
| + body: 'Contents',
|
| + actions: [
|
| + { action: 'actionId1', title: 'actionTitle1', icon: 'icon.png',
|
| + type: 'text' }
|
| + ]
|
| + });
|
| + }
|
| +
|
| // Returns the latest received message from the worker. If no message has
|
| // been received, nothing will be done. For successfully registered
|
| // Service Workers this is OK, however, since the "message" event handler
|
|
|