| Index: third_party/WebKit/Source/core/dom/ContainerNode.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ContainerNode.h b/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| index 385aa49a93e021f5d03f8c5f15951f939dc62990..e1f884a010ebaee6f3d15f14390cbdca4231337b 100644
|
| --- a/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| +++ b/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| @@ -460,7 +460,7 @@ inline bool Node::isTreeScope() const {
|
| inline void getChildNodes(ContainerNode& node, NodeVector& nodes) {
|
| DCHECK(!nodes.size());
|
| for (Node* child = node.firstChild(); child; child = child->nextSibling())
|
| - nodes.append(child);
|
| + nodes.push_back(child);
|
| }
|
|
|
| } // namespace blink
|
|
|