-
Notifications
You must be signed in to change notification settings - Fork 162
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
Expose HTMLMediaElement.srcObject #365
Conversation
Travis issue may be fixed in #368 |
#368 was merged. Could you rebase this PR? |
47a1ad3
to
ae50bec
Compare
6356b7e
to
0a15f36
Compare
@sjrd |
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 @exoego, and sorry for the late review. I'm trying to get down my to-do list of PR reviews at the moment.
I just have a few small suggestions, then it's good to go.
src/main/scala/org/scalajs/dom/experimental/mediastream/MediaStream.scala
Outdated
Show resolved
Hide resolved
src/main/scala/org/scalajs/dom/experimental/mediastream/MediaStream.scala
Outdated
Show resolved
Hide resolved
src/main/scala/org/scalajs/dom/experimental/mediastream/MediaStream.scala
Outdated
Show resolved
Hide resolved
Also assuming an implicit approval from @sjrd ;)
|
I am OK having this only on v2. |
I think there's no reason not to add this to 1.2.0 as well cos you're just adding new stuff. Our goal for 1.2.0 is to get as much in as we can without breaking bin-compat. |
@armanbilge This is ready to go, please merge if you're happy |
Closes #253.
According to MDN,
srcObject
was able to be aMediaStream
, aMediaSource
, aBlob
, or aFile
.But as of November 2017, browsers support only
MediaStream
forsrcObject
, sosrcObject
should be onlyMediaStream
in this type facade.