Bug 1565980. Force wmode 'gpu' to 'direct'. r=jmathies

This fixes wmode='gpu' with WebRender.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jeff Muizelaar 2019-07-26 13:48:01 +00:00
Родитель 7c48ef836f
Коммит d95574f06b
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -2046,7 +2046,8 @@ static void ForceDirect(nsTArray<nsCString>& names,
NS_NAMED_LITERAL_CSTRING(directAttributeValue, "direct");
auto wmodeAttributeIndex = names.IndexOf(wmodeAttributeName, 0, comparator);
if (wmodeAttributeIndex != names.NoIndex) {
if (values[wmodeAttributeIndex].EqualsLiteral("window")) {
if (values[wmodeAttributeIndex].EqualsLiteral("window") ||
values[wmodeAttributeIndex].EqualsLiteral("gpu")) {
values[wmodeAttributeIndex].Assign(directAttributeValue);
}
} else {