Index: third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.cpp |
diff --git a/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.cpp b/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.cpp |
index be4f84ef57a97144b1927eaec772ad6f28cecf90..b695356cea3bc2c030ff1c876937aa416bb3aa41 100644 |
--- a/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.cpp |
+++ b/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.cpp |
@@ -54,8 +54,6 @@ void MultiColumnFragmentainerGroup::resetColumnHeight() |
m_maxColumnHeight = calculateMaxColumnHeight(); |
- LayoutUnit oldColumnHeight = m_columnHeight; |
- |
LayoutMultiColumnFlowThread* flowThread = m_columnSet.multiColumnFlowThread(); |
LayoutMultiColumnFlowThread* enclosingFlowThread = flowThread->enclosingFlowThread(); |
if (enclosingFlowThread && enclosingFlowThread->isPageLogicalHeightKnown()) { |
@@ -68,9 +66,6 @@ void MultiColumnFragmentainerGroup::resetColumnHeight() |
} else { |
setAndConstrainColumnHeight(heightAdjustedForRowOffset(flowThread->columnHeightAvailable())); |
} |
- |
- if (m_columnHeight != oldColumnHeight) |
- m_columnSet.setChildNeedsLayout(MarkOnlyThis); |
} |
bool MultiColumnFragmentainerGroup::recalculateColumnHeight(BalancedColumnHeightCalculation calculationMode) |