зеркало из https://github.com/mozilla/gecko-dev.git
Bug 889085 - Don’t draw CSS background color for themes root frames. r=roc.
This commit is contained in:
Родитель
84a45c987a
Коммит
9d0bded724
|
@ -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;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче