Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PresentationReceiver#friendlyName to receiving UA #468

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 9 additions & 3 deletions index.html
Expand Up @@ -1129,7 +1129,7 @@ <h3>
[SecureContext, Exposed=Window]
interface Presentation {
};

</pre>
<p>
The <a data-link-for="Navigator"><code>presentation</code></a>
Expand All @@ -1149,7 +1149,7 @@ <h4>
partial interface Presentation {
attribute PresentationRequest? defaultRequest;
};

</pre>
<p>
The <dfn data-dfn-for=
Expand Down Expand Up @@ -1193,7 +1193,7 @@ <h4>
partial interface Presentation {
readonly attribute PresentationReceiver? receiver;
};

</pre>
<p>
The <dfn data-dfn-for="Presentation"><code>receiver</code></dfn>
Expand Down Expand Up @@ -2939,6 +2939,7 @@ <h3>
[SecureContext, Exposed=Window]
interface PresentationReceiver {
readonly attribute Promise&lt;PresentationConnectionList&gt; connectionList;
readonly attribute USVString friendlyName;
};


Expand Down Expand Up @@ -2972,6 +2973,11 @@ <h3>
promise</a> with the <a>presentation controllers monitor</a>.
</li>
</ol>
<p>
The <dfn data-dfn-for="PresentationReceiver">friendlyName</dfn>
attribute represents the user friendly name of the <a>presentation
display</a>.
</p>
<section>
<h4>
Creating a receiving browsing context
Expand Down