| Index: third_party/WebKit/Source/core/editing/commands/MergeIdenticalElementsCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/MergeIdenticalElementsCommand.cpp b/third_party/WebKit/Source/core/editing/commands/MergeIdenticalElementsCommand.cpp
|
| index d396fa023484fc5ed943abab3fbf0568aa833c6f..01184001c010bc13f7d2b3190e21a7ab88e8fd58 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/MergeIdenticalElementsCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/MergeIdenticalElementsCommand.cpp
|
| @@ -78,7 +78,7 @@ void MergeIdenticalElementsCommand::doUnapply() {
|
| HeapVector<Member<Node>> children;
|
| for (Node* child = m_element2->firstChild(); child && child != atChild;
|
| child = child->nextSibling())
|
| - children.append(child);
|
| + children.push_back(child);
|
|
|
| for (auto& child : children)
|
| m_element1->appendChild(child.release(), exceptionState);
|
|
|