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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/push_messaging/subscribe-success-in-document.html

Issue 2864603003: Implement and ship PushSubscription.expirationTime (Closed)
Patch Set: mac results Created 3 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: third_party/WebKit/LayoutTests/http/tests/push_messaging/subscribe-success-in-document.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/push_messaging/subscribe-success-in-document.html b/third_party/WebKit/LayoutTests/http/tests/push_messaging/subscribe-success-in-document.html
index c6fe024038b29f0de4e76aa8ab2d72346b3bad6c..e0a9e4e209f64ccd2f4c4782ee5cdcb17f731532 100644
--- a/third_party/WebKit/LayoutTests/http/tests/push_messaging/subscribe-success-in-document.html
+++ b/third_party/WebKit/LayoutTests/http/tests/push_messaging/subscribe-success-in-document.html
@@ -28,6 +28,9 @@ async_test(function(test) {
assert_idl_attribute(pushSubscription, 'endpoint');
assert_equals(typeof pushSubscription.endpoint, 'string');
+ assert_idl_attribute(pushSubscription, 'expirationTime');
+ assert_equals(pushSubscription.expirationTime, null);
+
try {
var endpointUrl = new URL(pushSubscription.endpoint);
} catch(e) {

Powered by Google App Engine
This is Rietveld 408576698