| Index: third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp b/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp
|
| index ea168768db241f74db0ea307690276848194e87d..7be7bb6912001e9697d2561a27c96fb64b2a4e42 100644
|
| --- a/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp
|
| @@ -78,7 +78,7 @@ bool FlexLayoutAlgorithm::ComputeNextFlexLine(
|
| m_lineBreakLength &&
|
| lineHasInFlowItem)
|
| break;
|
| - lineItems.append(flexItem);
|
| + lineItems.push_back(flexItem);
|
| lineHasInFlowItem = true;
|
| sumFlexBaseSize += flexItem.flexBaseMarginBoxSize();
|
| totalFlexGrow += flexItem.box->style()->flexGrow();
|
|
|