зеркало из https://github.com/mozilla/gecko-dev.git
Bug 819915 - Fix IsSingleFixedPositionImage to actually check if we only have a single image. r=roc
This commit is contained in:
Родитель
aac3d85f58
Коммит
d0b8e98f50
|
@ -1733,6 +1733,9 @@ nsDisplayBackgroundImage::IsSingleFixedPositionImage(nsDisplayListBuilder* aBuil
|
|||
if (mIsThemed || !mBackgroundStyle)
|
||||
return false;
|
||||
|
||||
if (mBackgroundStyle->mLayers.Length() != 1)
|
||||
return false;
|
||||
|
||||
nsPresContext* presContext = mFrame->PresContext();
|
||||
uint32_t flags = aBuilder->GetBackgroundPaintFlags();
|
||||
nsRect borderArea = nsRect(ToReferenceFrame(), mFrame->GetSize());
|
||||
|
|
Загрузка…
Ссылка в новой задаче