| Index: Source/core/rendering/InlineFlowBox.cpp
|
| diff --git a/Source/core/rendering/InlineFlowBox.cpp b/Source/core/rendering/InlineFlowBox.cpp
|
| index dc5059527b1340c76e6e80a9f273a02f8f49a232..089b2c5cf0d37a8ca452e33e668939a2cc890b8d 100644
|
| --- a/Source/core/rendering/InlineFlowBox.cpp
|
| +++ b/Source/core/rendering/InlineFlowBox.cpp
|
| @@ -1366,7 +1366,7 @@ void InlineFlowBox::paintMask(PaintInfo& paintInfo, const LayoutPoint& paintOffs
|
| bool hasBoxImage = maskBoxImage && maskBoxImage->canRender(renderer(), renderer()->style()->effectiveZoom());
|
| if (!hasBoxImage || !maskBoxImage->isLoaded()) {
|
| if (pushTransparencyLayer)
|
| - paintInfo.context->endTransparencyLayer();
|
| + paintInfo.context->endLayer();
|
| return; // Don't paint anything while we wait for the image to load.
|
| }
|
|
|
| @@ -1395,7 +1395,7 @@ void InlineFlowBox::paintMask(PaintInfo& paintInfo, const LayoutPoint& paintOffs
|
| }
|
|
|
| if (pushTransparencyLayer)
|
| - paintInfo.context->endTransparencyLayer();
|
| + paintInfo.context->endLayer();
|
| }
|
|
|
| InlineBox* InlineFlowBox::firstLeafChild() const
|
|
|