| Index: third_party/WebKit/Source/core/paint/ViewPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/ViewPainter.cpp b/third_party/WebKit/Source/core/paint/ViewPainter.cpp
|
| index a3fa2e373dcb74a684f18143ffbb4954ba3a4590..6a4dbdc4757498c4c8140b5b8f56c060bd1ac262 100644
|
| --- a/third_party/WebKit/Source/core/paint/ViewPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/ViewPainter.cpp
|
| @@ -142,13 +142,13 @@ void ViewPainter::paintBoxDecorationBackground(const PaintInfo& paintInfo)
|
|
|
| bool shouldPaintInViewportSpace = (*it)->attachment() == FixedBackgroundAttachment;
|
| if (shouldPaintInViewportSpace) {
|
| - BoxPainter::paintFillLayerExtended(m_layoutView, paintInfo, Color(), **it, LayoutRect(LayoutRect::infiniteIntRect()), BackgroundBleedNone);
|
| + BoxPainter::paintFillLayer(m_layoutView, paintInfo, Color(), **it, LayoutRect(LayoutRect::infiniteIntRect()), BackgroundBleedNone);
|
| } else {
|
| context.save();
|
| // TODO(trchen): We should be able to handle 3D-transformed root
|
| // background with slimming paint by using transform display items.
|
| context.concatCTM(transform.toAffineTransform());
|
| - BoxPainter::paintFillLayerExtended(m_layoutView, paintInfo, Color(), **it, LayoutRect(paintRect), BackgroundBleedNone);
|
| + BoxPainter::paintFillLayer(m_layoutView, paintInfo, Color(), **it, LayoutRect(paintRect), BackgroundBleedNone);
|
| context.restore();
|
| }
|
| }
|
|
|