| Index: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| index 715f84cc87724daf130b1f4ea60136aa3ea875e8..3ffe71d65ff3734f575ce5c8bca780f2421b72fd 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
|
| @@ -656,7 +656,7 @@ static Vector<PaintLayerStackingNode*> normalFlowListFor(
|
| PaintLayerStackingNodeIterator it(*node, NormalFlowChildren);
|
| Vector<PaintLayerStackingNode*> vector;
|
| while (PaintLayerStackingNode* normalFlowChild = it.next())
|
| - vector.append(normalFlowChild);
|
| + vector.push_back(normalFlowChild);
|
| return vector;
|
| }
|
|
|
|
|