Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/push_messaging/pushmanager-supported-content-encodings.html |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/push_messaging/pushmanager-supported-content-encodings.html b/third_party/WebKit/LayoutTests/http/tests/push_messaging/pushmanager-supported-content-encodings.html |
| index 27fcc9e66422cef8365fa626afcc2d80b2ebfe65..9f81a0f3844d04feca32e4e7b86022b5202e4f93 100644 |
| --- a/third_party/WebKit/LayoutTests/http/tests/push_messaging/pushmanager-supported-content-encodings.html |
| +++ b/third_party/WebKit/LayoutTests/http/tests/push_messaging/pushmanager-supported-content-encodings.html |
| @@ -17,9 +17,9 @@ |
| assert_equals(PushManager.supportedContentEncodings, PushManager.supportedContentEncodings); |
| assert_true(Array.isArray(PushManager.supportedContentEncodings)); |
| - // TODO(crbug.com/679789): The `aes128gcm` Content-Encoding must be supported as well. |
| - assert_equals(PushManager.supportedContentEncodings.length, 1); |
| - assert_equals(PushManager.supportedContentEncodings[0], 'aesgcm'); |
| + assert_equals(PushManager.supportedContentEncodings.length, 2); |
| + assert_equals(PushManager.supportedContentEncodings[0], 'aes128gcm'); |
|
johnme
2017/05/23 17:37:48
Nit: do we care about the order? If not, could use
|
| + assert_equals(PushManager.supportedContentEncodings[1], 'aesgcm'); |
| }); |
| </script> |
| </body> |