| Index: third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| index 02862b5680802995c8ede1a25394cd3c54b7488b..e51f660691a0fbbe6f1719b1301db3feec1ff2cd 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| @@ -132,7 +132,6 @@ LayoutBlock::LayoutBlock(ContainerNode* node)
|
| , m_widthAvailableToChildrenChanged(false)
|
| , m_hasOnlySelfCollapsingChildren(false)
|
| , m_descendantsWithFloatsMarkedForLayout(false)
|
| - , m_needsRecalcLogicalWidthAfterLayoutChildren(false)
|
| , m_hasPositionedObjects(false)
|
| , m_hasPercentHeightDescendants(false)
|
| {
|
| @@ -2075,7 +2074,6 @@ void LayoutBlock::computeChildPreferredLogicalWidths(LayoutObject& child, Layout
|
| minPreferredLogicalWidth = maxPreferredLogicalWidth = toLayoutBox(child).logicalHeight();
|
| return;
|
| }
|
| - m_needsRecalcLogicalWidthAfterLayoutChildren = true;
|
| minPreferredLogicalWidth = maxPreferredLogicalWidth = toLayoutBox(child).computeLogicalHeightWithoutLayout();
|
| return;
|
| }
|
| @@ -2091,9 +2089,6 @@ void LayoutBlock::computeChildPreferredLogicalWidths(LayoutObject& child, Layout
|
| else if (computedInlineSize.isMinContent())
|
| maxPreferredLogicalWidth = minPreferredLogicalWidth;
|
| }
|
| -
|
| - if (child.isLayoutBlock() && toLayoutBlock(child).needsRecalcLogicalWidthAfterLayoutChildren())
|
| - m_needsRecalcLogicalWidthAfterLayoutChildren = true;
|
| }
|
|
|
| bool LayoutBlock::hasLineIfEmpty() const
|
|
|