Bug 1505494 - remove redundant codes. r=cpearce

There are two exactly same codes here, remove one of them.

Differential Revision: https://phabricator.services.mozilla.com/D11502

--HG--
extra : moz-landing-system : lando
This commit is contained in:
alwu 2018-11-12 17:39:53 +00:00
Родитель 5657ac5a73
Коммит 77fd645e2a
1 изменённых файлов: 0 добавлений и 6 удалений

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

@ -167,12 +167,6 @@ IsMediaElementAllowedToPlay(const HTMLMediaElement& aElement)
return true;
}
if (!aElement.HasAudio() &&
aElement.ReadyState() >= HTMLMediaElement_Binding::HAVE_METADATA) {
AUTOPLAY_LOG("Allow media without audio track %p to autoplay\n", &aElement);
return true;
}
return false;
}