Merge latest green birch changeset and mozilla-central

This commit is contained in:
Ed Morley 2013-05-24 14:38:05 +01:00
Родитель 1bdfad1732 988d2be9ee
Коммит 2404a06181
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1700,6 +1700,10 @@ void HTMLMediaElement::SetMutedInternal(uint32_t aMuted)
NS_IMETHODIMP HTMLMediaElement::SetMuted(bool aMuted)
{
if (aMuted == Muted()) {
return NS_OK;
}
if (aMuted) {
SetMutedInternal(mMuted | MUTED_BY_CONTENT);
} else {