Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Unified Diff: LayoutTests/http/tests/push_messaging/push-subscription-stringification.html

Issue 1148763005: Remove support for PushSubscription.subscriptionId. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/push_messaging/push-subscription-stringification.html
diff --git a/LayoutTests/http/tests/push_messaging/push-subscription-stringification.html b/LayoutTests/http/tests/push_messaging/push-subscription-stringification.html
index ff3cca3e252eb170ee7cdefeeefe737e5e080fb1..80df53332ee95d66924436fb88242ad32332e0b9 100644
--- a/LayoutTests/http/tests/push_messaging/push-subscription-stringification.html
+++ b/LayoutTests/http/tests/push_messaging/push-subscription-stringification.html
@@ -27,7 +27,7 @@ async_test(function(test) {
})
.then(function(pushSubscription) {
var reflectedObject = JSON.parse(JSON.stringify(pushSubscription));
- var expectedProperties = ['endpoint', 'subscriptionId'];
+ var expectedProperties = ['endpoint'];
assert_equals(expectedProperties.length,
Object.getOwnPropertyNames(reflectedObject).length);

Powered by Google App Engine
This is Rietveld 408576698