-
Notifications
You must be signed in to change notification settings - Fork 2k
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 real values for Firefox for Media APIs #7522
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was one also complicated :) Breaking off tricky stuff so we can land the easy would be great.
api/TextTrackCue.json
Outdated
@@ -14,10 +14,10 @@ | |||
"version_added": "≤79" | |||
}, | |||
"firefox": { | |||
"version_added": null | |||
"version_added": "42" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is odd if TextTrackCue
shipped after VTTCue
, since VTTCue
inherits from TextTrackCue
. But TextTrackCue
is an abstract interface, so it may in fact have happened.
Can you also update https://developer.mozilla.org/en-US/docs/Web/API/VTTCue as part of this, or better yet split out the text track-related stuff Text* and VTT* into a separate PR?
api/TextTrackList.json
Outdated
@@ -14,10 +14,10 @@ | |||
"version_added": "≤18" | |||
}, | |||
"firefox": { | |||
"version_added": true | |||
"version_added": "31" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also update https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/textTracks to ensure that was also introduced in Firefox 31? If not there's something funny going on.
I got a notification for the PR update. For the avoidance of doubt, there are still a lot of outstanding issues. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for splitting out the text track stuff!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for splitting out the text track stuff!
This PR adds version numbers for Firefox for various Media APIs based upon results from the mdn-bcd-collector project, along with some mirroring. This PR is cherry-picked to APIs where the base version number is not adjusted.