| Index: third_party/WebKit/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.cpp b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.cpp
|
| index 60aadea98424975cb18ce6d9fc25ff6b85bc8799..b67e840452c18a01b0043a372881548a5d628123 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSpannerPlaceholder.cpp
|
| @@ -119,12 +119,10 @@ void LayoutMultiColumnSpannerPlaceholder::computeLogicalHeight(LayoutUnit, Layou
|
| computedValues.m_margins.m_after = marginAfter();
|
| }
|
|
|
| -void LayoutMultiColumnSpannerPlaceholder::invalidateTreeIfNeeded(const PaintInvalidationState& paintInvalidationState)
|
| +void LayoutMultiColumnSpannerPlaceholder::invalidatePaintOfSubtreesIfNeeded(const PaintInvalidationState& childPaintInvalidationState)
|
| {
|
| - PaintInvalidationState newPaintInvalidationState(paintInvalidationState, *this);
|
| - newPaintInvalidationState.updatePaintOffsetAndClipForChildren();
|
| - m_layoutObjectInFlowThread->invalidateTreeIfNeeded(newPaintInvalidationState);
|
| - LayoutBox::invalidateTreeIfNeeded(paintInvalidationState);
|
| + m_layoutObjectInFlowThread->invalidateTreeIfNeeded(childPaintInvalidationState);
|
| + LayoutBox::invalidatePaintOfSubtreesIfNeeded(childPaintInvalidationState);
|
| }
|
|
|
| void LayoutMultiColumnSpannerPlaceholder::paint(const PaintInfo& paintInfo, const LayoutPoint& paintOffset) const
|
|
|