Closed
Bug 447639
Opened 16 years ago
Closed 16 years ago
Update WHATWG Video/Audio code for recent spec changes
Categories
(Core :: Audio/Video, defect)
Core
Audio/Video
Tracking
()
RESOLVED
FIXED
mozilla1.9.1a2
People
(Reporter: cajbir, Assigned: cajbir)
References
Details
Attachments
(1 file)
(deleted),
patch
|
roc
:
review+
roc
:
superreview+
|
Details | Diff | Splinter Review |
At the time the code for bug 382267 was written the spec used different names for some attributes. This patch uses the new names for the attributes, and adds/removes other attributes that were changed in the spec. Spec is here:
http://www.whatwg.org/specs/web-apps/current-work/#video
This patch also fixes a bug that causes a crash when creating a video and adding it to the DOM via javascript.
Attachment #330950 -
Flags: superreview?(roc)
Attachment #330950 -
Flags: review?(roc)
Flags: wanted1.9.1?
+ nsresult PickMediaElement(nsAString& aChosenMediaResource);
+ virtual nsresult InitializeDecoder(nsAString& aChosenMediaResource);
These probably should be const nsAString&
It's probably worth adding an NS_IMPL_UINT_ATTR macro, but lets do that as a separate bug to make things easier to review.
Do these tests need to be conditional on MOZ_MEDIA somehow?
Otherwise looks good.
Assignee | ||
Comment 2•16 years ago
|
||
The string aChosenMediaResource is used as a return value. It gets assigned the url of the media resource that is picked to be displayed.
The tests are conditional on MOZ_MEDIA via the Makefile for content/media. This only gets included if MOZ_MEDIA is set, and so the tests are only included if that is set.
Attachment #330950 -
Flags: superreview?(roc)
Attachment #330950 -
Flags: superreview+
Attachment #330950 -
Flags: review?(roc)
Attachment #330950 -
Flags: review+
Oops, I thought you were going to attach a new patch but you didn't need to.
I'll land this when I get a chance.
Pushed 20427bfb85bc
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Updated•16 years ago
|
Component: DOM: Core & HTML → Video/Audio
Flags: wanted1.9.1?
QA Contact: general → video.audio
Target Milestone: --- → mozilla1.9.1a2
You need to log in
before you can comment on or make changes to this bug.
Description
•