Closed
Bug 485686
Opened 16 years ago
Closed 13 years ago
Page Info does not display any information about video stream from video tag
Categories
(SeaMonkey :: Page Info, defect)
SeaMonkey
Page Info
Tracking
(seamonkey2.8 fixed)
RESOLVED
FIXED
seamonkey2.8
Tracking | Status | |
---|---|---|
seamonkey2.8 | --- | fixed |
People
(Reporter: georg, Assigned: philip.chee)
References
()
Details
Attachments
(2 files)
(deleted),
patch
|
neil
:
review+
|
Details | Diff | Splinter Review |
(deleted),
text/plain
|
Details |
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1b4pre) Gecko/20090313 SeaMonkey/2.0b1pre
Build Identifier: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1b4pre) Gecko/20090313 SeaMonkey/2.0b1pre
When a video stream is displayed on the the page being provided via video tag, I expect to find information about that video stream in the Page Info on tab media, but there it does not appear.
The page http://air.mozilla.com/europe/ contains a video element with src="http://icecast.mozilla.org/maow.ogv"; the video is displayed correctly on the web page, but no information about the video is provided in the Page Info on tab media.
Reproducible: Always
Comment 1•16 years ago
|
||
Confirming with Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b4pre) Gecko/20090328 SeaMonkey/2.0b1pre
Status: UNCONFIRMED → NEW
Component: General → Page Info
Ever confirmed: true
OS: Mac OS X → All
QA Contact: general → page-info
Version: unspecified → Trunk
Comment 2•16 years ago
|
||
Also see Bug 448630, that's the Firefox version of this bug here.
Assignee | ||
Updated•15 years ago
|
Assignee | ||
Comment 4•13 years ago
|
||
This is a SeaMonkey port of Firefox Bug 448630 and dependencies.
http://www.seamonkey-project.org/dev/project-areas lists db48x as the owner of the SeaMonkey PageInfo code so setting review flags appropriately.
Assignee | ||
Comment 5•13 years ago
|
||
Comment on attachment 580432 [details] [diff] [review]
Patch v1.0 Straight port.
Switching requestee.
Attachment #580432 -
Flags: review?(db48x) → review?(neil)
Comment 6•13 years ago
|
||
Comment on attachment 580432 [details] [diff] [review]
Patch v1.0 Straight port.
>+ else if (item instanceof HTMLAudioElement && isProtocolAllowed) {
>+ newImage = new Audio;
>+ newImage.id = "thepreviewimage";
>+ newImage.src = url;
>+ newImage.controls = true;
Please turn buffering off for audio elements by specifying newImage.preload = "metadata"; (this is the default for video elements). r=me with that fixed.
>+ if ((width != physWidth || height != physHeight) && !isAudio)
[Not sure what the point is since we never set a width for audio elements.]
Attachment #580432 -
Flags: review?(neil) → review+
Assignee | ||
Comment 7•13 years ago
|
||
> Please turn buffering off for audio elements by specifying
> newImage.preload = "metadata"; (this is the default for video elements).
> r=me with that fixed.
Fixed.
>> + if ((width != physWidth || height != physHeight) && !isAudio)
> [Not sure what the point is since we never set a width for audio elements.]
Fixed.
Pushed to comm-central:
http://hg.mozilla.org/comm-central/rev/4210984aef0b
Assignee | ||
Updated•13 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
status-seamonkey2.8:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → seamonkey2.8
You need to log in
before you can comment on or make changes to this bug.
Description
•