| Index: third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp b/third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp
|
| index c9864ae1216f349a95de3088f43bc8a88257bbb1..c9bfcbc377bf7280cb32f5ceba69b4d4ea4a6595 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/SplitElementCommand.cpp
|
| @@ -50,7 +50,7 @@ void SplitElementCommand::executeApply() {
|
| HeapVector<Member<Node>> children;
|
| for (Node* node = m_element2->firstChild(); node != m_atChild;
|
| node = node->nextSibling())
|
| - children.append(node);
|
| + children.push_back(node);
|
|
|
| DummyExceptionStateForTesting exceptionState;
|
|
|
|
|