diff --git a/index.html b/index.html index 53d96da..33b97b8 100644 --- a/index.html +++ b/index.html @@ -403,8 +403,8 @@
Navigator
+ "https://html.spec.whatwg.org/multipage/system-state.html#navigator">
+ Navigator
- [Constructor(USVString url), - Constructor(sequence<USVString> urls), - SecureContext, Exposed=Window] + [SecureContext, Exposed=Window] interface PresentationRequest : EventTarget { + constructor(USVString url); + constructor(sequence<USVString> urls); Promise<PresentationConnection> start(); Promise<PresentationConnection> reconnect(USVString presentationId); Promise<PresentationAvailability> getAvailability(); attribute EventHandler onconnectionavailable; }; - - -+
A PresentationRequest
object is associated with a
request to initiate or reconnect to a presentation made by a
@@ -2078,18 +2076,16 @@
- [Constructor(DOMString type, PresentationConnectionAvailableEventInit eventInitDict), - SecureContext, Exposed=Window] + [SecureContext, Exposed=Window] interface PresentationConnectionAvailableEvent : Event { + constructor(DOMString type, PresentationConnectionAvailableEventInit eventInitDict); [SameObject] readonly attribute PresentationConnection connection; }; dictionary PresentationConnectionAvailableEventInit : EventInit { required PresentationConnection connection; }; - - -+
A controlling user agent fires a trusted event
named
A PresentationConnectionCloseEvent is fired when a
presentation connection enters a
enum PresentationConnectionCloseReason { "error", "closed", "wentaway" };
- [Constructor(DOMString type, PresentationConnectionCloseEventInit eventInitDict),
- SecureContext, Exposed=Window]
+ [SecureContext, Exposed=Window]
interface PresentationConnectionCloseEvent : Event {
+ constructor(DOMString type, PresentationConnectionCloseEventInit eventInitDict);
readonly attribute PresentationConnectionCloseReason reason;
readonly attribute DOMString message;
};
@@ -2538,9 +2534,7 @@
+
required PresentationConnectionCloseReason reason;
DOMString message = "";
};
-
-
-