| Index: Source/core/rendering/InlineFlowBox.cpp
|
| diff --git a/Source/core/rendering/InlineFlowBox.cpp b/Source/core/rendering/InlineFlowBox.cpp
|
| index 191deb2500a9c93c11a9a9649f6a1ddf3853863c..6eb96a5cdb8169980e2cfe4c7e8070029c05649c 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
|
|
|