| Index: third_party/WebKit/LayoutTests/http/tests/notifications/notification-properties.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/notifications/notification-properties.html b/third_party/WebKit/LayoutTests/http/tests/notifications/notification-properties.html
|
| index cddb8d0ea27b9e7b3ed345a01a268564961e2256..90b5b9eaf8608f752df513be3ba502d6cd53b749 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/notifications/notification-properties.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/notifications/notification-properties.html
|
| @@ -12,6 +12,9 @@
|
| // manually, grant Notification permission first.
|
| test(function () {
|
| assert_greater_than_equal(Notification.maxActions, 0);
|
| + var oldMaxActions = Notification.maxActions;
|
| + Notification.maxActions++;
|
| + assert_equals(Notification.maxActions, oldMaxActions, 'Notification.maxActions should be immutable.');
|
|
|
| var options = {
|
| dir: "rtl",
|
|
|