| Index: third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
|
| index 0a19c60e8d294f45fdfa0f2b750307e2ed885af5..29a8fad28d49cf0263fb53a9a2d050f8e6f03120 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
|
| @@ -1574,7 +1574,7 @@ void InlineFlowBox::collectLeafBoxesInLogicalOrder(
|
| for (; leaf; leaf = leaf->nextLeafChild()) {
|
| minLevel = std::min(minLevel, leaf->bidiLevel());
|
| maxLevel = std::max(maxLevel, leaf->bidiLevel());
|
| - leafBoxesInLogicalOrder.append(leaf);
|
| + leafBoxesInLogicalOrder.push_back(leaf);
|
| }
|
|
|
| if (getLineLayoutItem().style()->rtlOrdering() == EOrder::Visual)
|
|
|