Bug 889085 - Don’t draw CSS background color for themes root frames. r=roc.

This commit is contained in:
Markus Stange 2014-01-18 12:51:03 +01:00
Родитель 84a45c987a
Коммит 9d0bded724
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -1735,6 +1735,12 @@ nsCSSRendering::DetermineBackgroundColor(nsPresContext* aPresContext,
bool& aDrawBackgroundImage,
bool& aDrawBackgroundColor)
{
if (aFrame->IsThemed()) {
aDrawBackgroundColor = false;
aDrawBackgroundImage = false;
return NS_RGBA(0,0,0,0);
}
aDrawBackgroundImage = true;
aDrawBackgroundColor = true;