RESOLVED FIXED 35789
OSX: Implement 'preload=none'
https://bugs.webkit.org/show_bug.cgi?id=35789
Summary OSX: Implement 'preload=none'
Eric Carlson
Reported 2010-03-05 07:24:24 PST
https://bugs.webkit.org/show_bug.cgi?id=35385 added support for the 'preload' attribute to the media element. That patch only dealt with parsing the attribute and passing it down to the media engine, actually making it work requires support in the media engine. This bug is for the work in the OSX media engine.
Attachments
Proposed patch. (13.59 KB, patch)
2010-03-05 07:26 PST, Eric Carlson
no flags
Eric Carlson
Comment 1 2010-03-05 07:26:50 PST
Created attachment 50095 [details] Proposed patch.
Adele Peterson
Comment 2 2010-03-05 08:52:55 PST
Comment on attachment 50095 [details] Proposed patch. > @@ -746,7 +775,7 @@ bool MediaPlayerPrivate::hasAudio() cons > bool MediaPlayerPrivate::supportsFullscreen() const > { > #if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) > - return true; > + return metaDataAvailable(); > #else > // See <rdar://problem/7389945> > return false; I don't think this change is covered in the ChangeLog - is this related?
Eric Carlson
Comment 3 2010-03-05 08:55:14 PST
(In reply to comment #2) > (From update of attachment 50095 [details]) > > @@ -746,7 +775,7 @@ bool MediaPlayerPrivate::hasAudio() cons > > bool MediaPlayerPrivate::supportsFullscreen() const > > { > > #if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) > > - return true; > > + return metaDataAvailable(); > > #else > > // See <rdar://problem/7389945> > > return false; > > I don't think this change is covered in the ChangeLog - is this related? Oops, that is for another bug.
Adele Peterson
Comment 4 2010-03-05 09:04:47 PST
Comment on attachment 50095 [details] Proposed patch. ok- r=me minus that part of the patch.
Eric Carlson
Comment 5 2010-03-05 09:14:55 PST
Note You need to log in before you can comment on or make changes to this bug.