Bug 1291528 - Don't use fast path in nsCSSRendering::PaintGradient if source rect is empty - r=mstange

This commit is contained in:
Edwin Flores 2016-08-17 09:26:11 +01:00
Родитель 5b5759985b
Коммит 57383e5cb5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2727,7 +2727,7 @@ nsCSSRendering::PaintGradient(nsPresContext* aPresContext,
aGradient->mShape == NS_STYLE_GRADIENT_SHAPE_LINEAR &&
(lineStart.x == lineEnd.x) != (lineStart.y == lineEnd.y) &&
aRepeatSize.width == aDest.width && aRepeatSize.height == aDest.height &&
!aGradient->mRepeating && !cellContainsFill;
!aGradient->mRepeating && !aSrc.IsEmpty() && !cellContainsFill;
gfxMatrix matrix;
if (forceRepeatToCoverTiles) {