| Index: third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp b/third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp
|
| index f0845d6f7ea2938fdebd7038423200fff6ca44cb..66d331d0c5f2dd84e95a27459e53f0ada64f348c 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp
|
| @@ -2130,8 +2130,8 @@ void LayoutFlexibleBox::applyStretchAlignmentToChild(
|
| LayoutUnit childWidth =
|
| (lineCrossAxisExtent - crossAxisMarginExtentForChild(child))
|
| .clampNegativeToZero();
|
| - childWidth =
|
| - child.constrainLogicalWidthByMinMax(childWidth, childWidth, this);
|
| + childWidth = child.constrainLogicalWidthByMinMax(
|
| + childWidth, crossAxisContentExtent(), this);
|
|
|
| if (childWidth != child.logicalWidth()) {
|
| child.setOverrideLogicalContentWidth(
|
|
|