| Index: Source/core/rendering/RenderBox.cpp
|
| diff --git a/Source/core/rendering/RenderBox.cpp b/Source/core/rendering/RenderBox.cpp
|
| index 701202d1aa78ca3f937635ee04603f819461d41a..275b37ad5db93f3ef6f997cad96fd281e41fac01 100644
|
| --- a/Source/core/rendering/RenderBox.cpp
|
| +++ b/Source/core/rendering/RenderBox.cpp
|
| @@ -1167,7 +1167,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)
|
| @@ -1371,7 +1371,7 @@ void RenderBox::paintMaskImages(const PaintInfo& paintInfo, const LayoutRect& pa
|
| }
|
|
|
| if (pushTransparencyLayer)
|
| - paintInfo.context->endTransparencyLayer();
|
| + paintInfo.context->endLayer();
|
| }
|
|
|
| LayoutRect RenderBox::maskClipRect()
|
| @@ -1433,7 +1433,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,
|
|
|