Closed
Bug 1175523
Opened 10 years ago
Closed 9 years ago
Unprefix mozSrcObject (to srcObject)
Categories
(Core :: Audio/Video, defect)
Core
Audio/Video
Tracking
()
RESOLVED
FIXED
mozilla42
People
(Reporter: jib, Assigned: jib)
References
()
Details
(Keywords: dev-doc-needed)
Attachments
(2 files)
HTMLMediaElement.srcObject is in the html 5.1 spec now (see URL), so it seems time.
Assignee | ||
Updated•10 years ago
|
Assignee: nobody → jib
Assignee | ||
Comment 1•10 years ago
|
||
Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Attachment #8633306 -
Flags: review?(roc)
Assignee | ||
Comment 2•10 years ago
|
||
Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Attachment #8633307 -
Flags: review?(pehrsons)
Comment on attachment 8633306 [details]
MozReview Request: Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
https://reviewboard.mozilla.org/r/13199/#review11799
Ship It!
Attachment #8633306 -
Flags: review?(roc) → review+
Updated•10 years ago
|
Attachment #8633307 -
Flags: review?(pehrsons) → review+
Comment 4•10 years ago
|
||
Comment on attachment 8633307 [details]
MozReview Request: Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
https://reviewboard.mozilla.org/r/13201/#review11797
Looks good, but at least the double `SimpleTest.finish()` needs to get fixed before landing.
::: dom/media/tests/mochitest/test_getUserMedia_constraints.html:98
(Diff revision 1)
> - "Unexpected support (please update test): " + unexpected);
> + "Unanticipated support (please update test): " + unexpected);
This change doesn't seem to belong in this patch.
::: dom/media/tests/mochitest/test_peerConnection_callbacks.html:1
(Diff revision 1)
> -<!DOCTYPE HTML>
> +<!DOCTYPE HTML>
Same with this.
::: dom/media/test/test_streams_srcObject.html:44
(Diff revision 1)
> + SimpleTest.finish();
There appears to be two `SimpleTest.finish()` now. Are they racing?
Updated•10 years ago
|
Keywords: dev-doc-needed
Assignee | ||
Comment 5•10 years ago
|
||
https://reviewboard.mozilla.org/r/13201/#review11797
> Same with this.
whoops, I trampled on a byte order mark. Restored.
> This change doesn't seem to belong in this patch.
I was trying to sneak it in. Turns out using the word 'unexpected' in an is() test, not the best idea (no harm other than irritation while searching for real test failures). I'll open a separate bug.
Assignee | ||
Comment 6•10 years ago
|
||
Comment on attachment 8633307 [details]
MozReview Request: Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Attachment #8633307 -
Flags: review+ → review?(pehrsons)
Assignee | ||
Comment 7•10 years ago
|
||
Note Bug 1183664.
Comment 8•10 years ago
|
||
Comment on attachment 8633307 [details]
MozReview Request: Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
https://reviewboard.mozilla.org/r/13201/#review11929
Ship It!
Attachment #8633307 -
Flags: review?(pehrsons) → review+
Assignee | ||
Updated•10 years ago
|
Keywords: checkin-needed
Assignee | ||
Comment 9•10 years ago
|
||
Comment on attachment 8633306 [details]
MozReview Request: Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Attachment #8633306 -
Flags: review+ → review?(roc)
Assignee | ||
Comment 10•10 years ago
|
||
Comment on attachment 8633307 [details]
MozReview Request: Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Attachment #8633307 -
Flags: review+ → review?(pehrsons)
Assignee | ||
Updated•10 years ago
|
Attachment #8633306 -
Flags: review?(roc) → review+
Assignee | ||
Updated•10 years ago
|
Attachment #8633307 -
Flags: review?(pehrsons) → review+
Assignee | ||
Comment 11•10 years ago
|
||
Rebased for good measure. I find it hard to tell in the hg bookmarks workflow whether rebasing is needed for landing. Anyone have a good solution to this?
Comment on attachment 8633306 [details]
MozReview Request: Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
https://reviewboard.mozilla.org/r/13199/#review11951
Ship It!
Attachment #8633306 -
Flags: review+
Comment 13•10 years ago
|
||
webidl changes need DOM peer review. Also, Try link? :)
Keywords: checkin-needed
Assignee | ||
Comment 14•10 years ago
|
||
Thanks for catching that!
Try links are hidden in the Review Board UX now (3rd collapsed "Review request changed" from the top).
or https://treeherder.mozilla.org/#/jobs?repo=try&revision=15bbd3d14a60
Assignee | ||
Comment 15•10 years ago
|
||
Comment on attachment 8633306 [details]
MozReview Request: Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Attachment #8633306 -
Flags: review?(roc)
Attachment #8633306 -
Flags: review?(bugs)
Attachment #8633306 -
Flags: review+
Assignee | ||
Updated•10 years ago
|
Attachment #8633306 -
Flags: review?(roc) → review+
Comment 16•10 years ago
|
||
Comment on attachment 8633306 [details]
MozReview Request: Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Nit, we try to implement WhatWG HTML spec, not W3C HTML 5.x.
HTML spec has
attribute MediaProvider? srcObject;
but the patch
attribute MediaStream? srcObject;
Do we have plans to support MediaProvider there?
Comment 17•10 years ago
|
||
I think we need intent-to-implement/ship on dev.platform especially in this particular case since we're not following the spec here.
http://logs.glob.uno/?c=content#c308536
Comment 18•10 years ago
|
||
Comment on attachment 8633306 [details]
MozReview Request: Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
and clearing the review request until that is done.
Note, the worry is that we implement something which throws in cases the spec says it shouldn't throw. (when using the setter with a type we don't support yet)
Attachment #8633306 -
Flags: review?(bugs)
Assignee | ||
Updated•10 years ago
|
Assignee | ||
Updated•9 years ago
|
Attachment #8633306 -
Flags: review?(roc)
Attachment #8633306 -
Flags: review?(bugs)
Attachment #8633306 -
Flags: review+
Assignee | ||
Comment 19•9 years ago
|
||
Comment on attachment 8633306 [details]
MozReview Request: Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Assignee | ||
Updated•9 years ago
|
Attachment #8633307 -
Flags: review+ → review?(pehrsons)
Assignee | ||
Comment 20•9 years ago
|
||
Comment on attachment 8633307 [details]
MozReview Request: Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Assignee | ||
Comment 21•9 years ago
|
||
Comment on attachment 8633306 [details]
MozReview Request: Bug 1175523 - add HTMLMediaElement.srcObject alias to .mozSrcObject
Just a rebase.
Attachment #8633306 -
Flags: review?(roc)
Attachment #8633306 -
Flags: review?(bugs)
Attachment #8633306 -
Flags: review+
Assignee | ||
Updated•9 years ago
|
Attachment #8633307 -
Flags: review?(pehrsons) → review+
Assignee | ||
Comment 22•9 years ago
|
||
It's been two weeks, with few comments, all positive. OK to land?
Would love to get this in for 42 (it's a safe alias for the prefixed version which remains for now).
Flags: needinfo?(bugs)
Assignee | ||
Comment 23•9 years ago
|
||
Comment on attachment 8633307 [details]
MozReview Request: Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Attachment #8633307 -
Flags: review+ → review?(pehrsons)
Assignee | ||
Comment 24•9 years ago
|
||
Comment on attachment 8633307 [details]
MozReview Request: Bug 1175523 - update most (but not all) tests to use elem.srcObject over .mozSrcObject
Fixed merge accident.
Attachment #8633307 -
Flags: review?(pehrsons) → review+
Assignee | ||
Updated•9 years ago
|
Keywords: checkin-needed
Assignee | ||
Comment 25•9 years ago
|
||
From #content today: 12:56:54 - @smaug: yeah, I think it should be fine
Assignee | ||
Updated•9 years ago
|
Flags: needinfo?(bugs)
Comment 26•9 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/dff0fcf398a1
https://hg.mozilla.org/integration/mozilla-inbound/rev/79d3b8d91250
Keywords: checkin-needed
Comment 27•9 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/dff0fcf398a1
https://hg.mozilla.org/mozilla-central/rev/79d3b8d91250
Status: NEW → RESOLVED
Closed: 9 years ago
status-firefox42:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla42
You need to log in
before you can comment on or make changes to this bug.
Description
•