diff --git a/index.html b/index.html index ad8edd8..4caa56f 100644 --- a/index.html +++ b/index.html @@ -50,7 +50,7 @@ }; - +

The Push API enables sending of a push message to a web application via @@ -750,7 +750,7 @@

[Exposed=(Window,Worker), SecureContext] interface PushSubscription { readonly attribute USVString endpoint; - readonly attribute DOMTimeStamp? expirationTime; + readonly attribute EpochTimeStamp? expirationTime; [SameObject] readonly attribute PushSubscriptionOptions options; ArrayBuffer? getKey(PushEncryptionKeyName name); Promise<boolean> unsubscribe(); @@ -760,7 +760,7 @@

dictionary PushSubscriptionJSON { USVString endpoint; - DOMTimeStamp? expirationTime; + EpochTimeStamp? expirationTime = null; record<DOMString, USVString> keys; };