| 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 e859346c655bc793bf52353ddae4f599a063557c..7d04c866abaaed432f8075701341bc6d0cb3cb2c 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp
|
| @@ -884,7 +884,7 @@ void LayoutFlexibleBox::cacheChildMainSize(const LayoutBox& child) {
|
| child.scrollbarLogicalWidth() - child.scrollbarLogicalWidth();
|
| }
|
| m_intrinsicSizeAlongMainAxis.set(&child, mainSize);
|
| - m_relaidOutChildren.add(&child);
|
| + m_relaidOutChildren.insert(&child);
|
| }
|
|
|
| void LayoutFlexibleBox::clearCachedMainSizeForChild(const LayoutBox& child) {
|
| @@ -1827,7 +1827,7 @@ void LayoutFlexibleBox::layoutAndPlaceChildren(
|
| if (!child->needsLayout())
|
| markChildForPaginationRelayoutIfNeeded(*child, layoutScope);
|
| if (child->needsLayout())
|
| - m_relaidOutChildren.add(child);
|
| + m_relaidOutChildren.insert(child);
|
| child->layoutIfNeeded();
|
|
|
| updateAutoMarginsInMainAxis(*child, autoMarginOffset);
|
|
|