From bffb3c75103a7205f6f9e14d79d5128ecb0595a0 Mon Sep 17 00:00:00 2001 From: Takumi Fujimoto Date: Tue, 3 Sep 2019 11:23:21 -0700 Subject: [PATCH] Add PresentationConnection#receiverName --- index.html | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 53d96da..5fa2353 100644 --- a/index.html +++ b/index.html @@ -1129,7 +1129,7 @@

[SecureContext, Exposed=Window] interface Presentation { }; - +

The presentation @@ -1149,7 +1149,7 @@

partial interface Presentation { attribute PresentationRequest? defaultRequest; }; - +

The partial interface Presentation { readonly attribute PresentationReceiver? receiver; }; - +

The receiver @@ -2873,6 +2873,26 @@

+
+

+ Controlling user agent +

+

+ Controlling user agents + MUST implement the following partial interface: +

+
+            partial interface PresentationConnection {
+              readonly attribute USVString receiverName;
+            };
+
+
+

+ The receiverName attribute represents the + user friendly name for the presentation display associated + with the presentation connection. +

+

Event Handlers