зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1554699 - HTMLMediaElement.preload: Ignore setting and always get "none" when playing a MediaStream. r=jib
Differential Revision: https://phabricator.services.mozilla.com/D33096 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
81b4437bf9
Коммит
0f0c5a8595
|
@ -436,9 +436,16 @@ class HTMLMediaElement : public nsGenericHTMLElement,
|
|||
void NotifyAudioPlaybackChanged(AudibleChangedReasons aReason);
|
||||
|
||||
void GetPreload(nsAString& aValue) {
|
||||
if (mSrcAttrStream) {
|
||||
nsGkAtoms::none->ToString(aValue);
|
||||
return;
|
||||
}
|
||||
GetEnumAttr(nsGkAtoms::preload, nullptr, aValue);
|
||||
}
|
||||
void SetPreload(const nsAString& aValue, ErrorResult& aRv) {
|
||||
if (mSrcAttrStream) {
|
||||
return;
|
||||
}
|
||||
SetHTMLAttr(nsGkAtoms::preload, aValue, aRv);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче