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

Adds note regarding remote playback device capabilities. #94

Merged
merged 3 commits into from
Jul 13, 2017
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@ <h2>
"https://html.spec.whatwg.org/multipage/embedded-content.html#location-of-the-media-resource">
media resource</a></dfn> <dfn data-lt="exposing a user interface to the user"><a href=
"https://html.spec.whatwg.org/multipage/embedded-content.html#expose-a-user-interface-to-the-user">
expose a user interface to the user</a></dfn>
expose a user interface to the user</a></dfn>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: accidental ws change?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done, and fixed the rest of the list.

<dfn><a href="https://html.spec.whatwg.org/multipage/media.html#dom-media-fastseek">fastSeek</a></dfn>
<dfn><a href="https://html.spec.whatwg.org/multipage/media.html#dom-media-seeking">seeking</a></dfn>
</li>
<li>
<dfn><a href=
Expand Down Expand Up @@ -1232,6 +1234,24 @@ <h4>
If sending any command fails, the <a>user agent</a> MAY
<a>disconnect from a remote playback device</a>.
</p>
<div class="note">
<p>
The <a>remote playback device</a> may implement a subset
of the capabilities of the playback engine of the user
agent, and some <a>HTMLMediaElement</a> APIs may not make sense to use during
remote playback. In this case, the <a>local playback state</a> should
reflect as closely as possible the actual <a>remote
playback state</a> after a media command that is not supported during
remote playback.
</p>
<p>
For example, after calling <code><a>fastSeek</a>()</code> while
connected to a <a>remote playback device</a> that does not
support it, the <code><a>seeking</a></code> attribute of the
<a>HTMLMediaElement</a> should remain <code>false</code> and no
<code>seeking</code> event should be fired.
</p>
</div>
</section>
<section>
<h4>
Expand Down