Index: LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js |
diff --git a/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js b/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js |
index 148df6e2898e466470d8ca4772827945bf2204e8..850f15fb229b358fc4871e9ee7ed1699f82c2c71 100644 |
--- a/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js |
+++ b/LayoutTests/http/tests/notifications/resources/serviceworker-notification-event.js |
@@ -7,9 +7,11 @@ test(function() { |
var event = new NotificationEvent('NotificationEvent'); |
assert_equals(event.type, 'NotificationEvent'); |
assert_will_be_idl_attribute(event, 'notification'); |
+ assert_will_be_idl_attribute(event, 'action'); |
assert_equals(event.cancelable, false); |
assert_equals(event.bubbles, false); |
assert_equals(event.notification, null); |
+ assert_equals(event.action, ""); |
assert_inherits(event, 'waitUntil'); |
var eventWithInit = new NotificationEvent('NotificationEvent', |