-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Remove MediaController and media element's mediagroup attribute #1225
Conversation
LGTM. We even gave an extra month after the April 2016 deadline; oh well... |
FWIW, on my part it was the intention to wait until the end of April, to allow for the least unfavorable interpretation of the message. |
With the removal of the step including "if jumped is true", an earlier assignment of jumped becomes pointless, can you remove that as well? |
The "effective playback rate" concept becomes redundant, and was introduced with 66c5b32. Can you revert it back the references to just |
You didn't change this but it shows up in the diff: In five other cases, the "ended playback" concept is linked as "playback has ended" and I think that would read better with the preceding bit removed. |
LGTM % above nits. Unfortunately the diff was too big to comment inline, but I hope you can figure out what I mean. |
This PR is a part of a project to add missing interfaces and interface features to BCD that are from an active spec (including WICG specs) and is supported in at least one browser. This particular PR adds the missing `MediaController` API. The data comes from the [mdn-bcd-collector](https://mdn-bcd-collector.gooborg.com) project (v10.2.10). _Check out the [collector's guide on how to review this PR](https://github.com/openwebdocs/mdn-bcd-collector#reviewing-bcd-changes)._ Tests Used: https://mdn-bcd-collector.gooborg.com/tests/api/MediaController Additional Notes: While the feature was removed from the spec (see whatwg/html#1225), we still currently document HTMLMediaElement.controller, which returns this interface, so I figured it would be sensible to add this to BCD.
* Add missing MediaController API feature This PR is a part of a project to add missing interfaces and interface features to BCD that are from an active spec (including WICG specs) and is supported in at least one browser. This particular PR adds the missing `MediaController` API. The data comes from the [mdn-bcd-collector](https://mdn-bcd-collector.gooborg.com) project (v10.2.10). _Check out the [collector's guide on how to review this PR](https://github.com/openwebdocs/mdn-bcd-collector#reviewing-bcd-changes)._ Tests Used: https://mdn-bcd-collector.gooborg.com/tests/api/MediaController Additional Notes: While the feature was removed from the spec (see whatwg/html#1225), we still currently document HTMLMediaElement.controller, which returns this interface, so I figured it would be sensible to add this to BCD. * standard_track: true -> false
* Add missing MediaController API feature This PR is a part of a project to add missing interfaces and interface features to BCD that are from an active spec (including WICG specs) and is supported in at least one browser. This particular PR adds the missing `MediaController` API. The data comes from the [mdn-bcd-collector](https://mdn-bcd-collector.gooborg.com) project (v10.2.10). _Check out the [collector's guide on how to review this PR](https://github.com/openwebdocs/mdn-bcd-collector#reviewing-bcd-changes)._ Tests Used: https://mdn-bcd-collector.gooborg.com/tests/api/MediaController Additional Notes: While the feature was removed from the spec (see whatwg/html#1225), we still currently document HTMLMediaElement.controller, which returns this interface, so I figured it would be sensible to add this to BCD. * standard_track: true -> false
This reverts 66c5b32 due to lack of
implementer interest. This is unfortunate as simultaneous playback of
multiple media elements is impossible to do correctly without it.
Hopefully an alternative solution with broader support can be found
going forward.
Fixes #192.