| Index: third_party/WebKit/Source/core/editing/commands/InsertParagraphSeparatorCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/InsertParagraphSeparatorCommand.cpp b/third_party/WebKit/Source/core/editing/commands/InsertParagraphSeparatorCommand.cpp
|
| index ff2e6a09079c510e35f5016ef5a3538d3ab37668..2e1a00051adacef2073924a9356be629e45de979 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/InsertParagraphSeparatorCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/InsertParagraphSeparatorCommand.cpp
|
| @@ -141,7 +141,7 @@ void InsertParagraphSeparatorCommand::getAncestorsInsideBlock(
|
| if (insertionNode != outerBlock) {
|
| for (Element* n = insertionNode->parentElement(); n && n != outerBlock;
|
| n = n->parentElement())
|
| - ancestors.append(n);
|
| + ancestors.push_back(n);
|
| }
|
| }
|
|
|
|
|