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 PresentationConnection#receiverName for controlling UA #467

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
26 changes: 23 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 @@ -2873,6 +2873,26 @@ <h4>
</li>
</ol>
</section>
<section>
<h4>
Controlling user agent
</h4>
<p>
<a data-lt="controlling user agent">Controlling user agents</a>
MUST implement the following partial interface:
</p>
<pre class="idl idl-controlling-ua">
partial interface PresentationConnection {
readonly attribute USVString receiverName;
};

</pre>
<p>
The <dfn><code>receiverName</code></dfn> attribute represents the
user friendly name for the <a>presentation display</a> associated
with the <a>presentation connection</a>.
</p>
</section>
<section>
<h4>
Event Handlers
Expand Down