| Index: third_party/WebKit/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js b/third_party/WebKit/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js
|
| index 7ed607eebcddbffd7c6bbaa447b810a3faefab49..400f065fc2886a0c73a131152cc14484adaf22e7 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js
|
| @@ -30,10 +30,12 @@ function runTest(notification) {
|
| assert_equals(event.bubbles, false);
|
| assert_equals(event.notification, notification);
|
| assert_equals(event.action, '');
|
| + assert_equals(event.reply, '');
|
| assert_inherits(event, 'waitUntil');
|
|
|
| const customEvent = new NotificationEvent('NotificationEvent', {
|
| notification: notification,
|
| + reply: 'my reply',
|
| bubbles: true,
|
| cancelable: true });
|
|
|
| @@ -41,6 +43,7 @@ function runTest(notification) {
|
| assert_equals(customEvent.cancelable, true);
|
| assert_equals(customEvent.bubbles, true);
|
| assert_equals(customEvent.notification, notification);
|
| + assert_equals(customEvent.reply, 'my reply');
|
| } catch (e) {
|
| result.success = false;
|
| result.message = e.message + '\n' + e.stack;
|
|
|