| Index: Source/core/rendering/RenderBox.cpp
|
| diff --git a/Source/core/rendering/RenderBox.cpp b/Source/core/rendering/RenderBox.cpp
|
| index 91cca45be8f0813d3a0e4cfaabfbf9ddb5da79a5..c685c29f536e0910058ab58c907003b908f08c24 100644
|
| --- a/Source/core/rendering/RenderBox.cpp
|
| +++ b/Source/core/rendering/RenderBox.cpp
|
| @@ -1168,7 +1168,7 @@ void RenderBox::paintBoxDecorations(PaintInfo& paintInfo, const LayoutPoint& pai
|
| paintBorder(paintInfo, paintRect, style(), bleedAvoidance);
|
|
|
| if (bleedAvoidance == BackgroundBleedUseTransparencyLayer)
|
| - paintInfo.context->endTransparencyLayer();
|
| + paintInfo.context->endLayer();
|
| }
|
|
|
| void RenderBox::paintBackground(const PaintInfo& paintInfo, const LayoutRect& paintRect, BackgroundBleedAvoidance bleedAvoidance)
|
| @@ -1372,7 +1372,7 @@ void RenderBox::paintMaskImages(const PaintInfo& paintInfo, const LayoutRect& pa
|
| }
|
|
|
| if (pushTransparencyLayer)
|
| - paintInfo.context->endTransparencyLayer();
|
| + paintInfo.context->endLayer();
|
| }
|
|
|
| LayoutRect RenderBox::maskClipRect()
|
| @@ -1434,7 +1434,7 @@ void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, cons
|
| paintFillLayer(paintInfo, c, *it, rect, bleedAvoidance, op, backgroundObject);
|
|
|
| if (shouldDrawBackgroundInSeparateBuffer)
|
| - context->endTransparencyLayer();
|
| + context->endLayer();
|
| }
|
|
|
| void RenderBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, const LayoutRect& rect,
|
|
|