| Index: third_party/WebKit/Source/core/layout/line/RootInlineBox.h
|
| diff --git a/third_party/WebKit/Source/core/layout/line/RootInlineBox.h b/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
|
| index a962d7ff674bfc1577b77f33666934f533f3dffc..6bfb2964735201eeffc09c1956b073297cc9fcf0 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
|
| +++ b/third_party/WebKit/Source/core/layout/line/RootInlineBox.h
|
| @@ -157,7 +157,7 @@ class RootInlineBox : public InlineFlowBox {
|
| void appendFloat(LayoutBox* floatingBox) {
|
| ASSERT(!isDirty());
|
| if (m_floats)
|
| - m_floats->append(floatingBox);
|
| + m_floats->push_back(floatingBox);
|
| else
|
| m_floats = WTF::wrapUnique(new Vector<LayoutBox*>(1, floatingBox));
|
| }
|
|
|