| 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..906128b2cdb316105b6d01c18a78b0f7510ecf05 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
|
| @@ -34,6 +34,7 @@ function runTest(notification) {
|
|
|
| const customEvent = new NotificationEvent('NotificationEvent', {
|
| notification: notification,
|
| + reply: 'my reply',
|
| bubbles: true,
|
| cancelable: true });
|
|
|
| @@ -41,6 +42,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;
|
|
|