| Index: third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp b/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
|
| index 2ea3a63b7e6346a21291d911b26ffc82d8a3d030..87ba90484b225a313831e906072c805447cdb446 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
|
| @@ -195,7 +195,7 @@ void BreakBlockquoteCommand::doApply(EditingState* editingState) {
|
| HeapVector<Member<Element>> ancestors;
|
| for (Element* node = startNode->parentElement();
|
| node && node != topBlockquote; node = node->parentElement())
|
| - ancestors.append(node);
|
| + ancestors.push_back(node);
|
|
|
| // Insert a clone of the top blockquote after the break.
|
| Element* clonedBlockquote = topBlockquote->cloneElementWithoutChildren();
|
|
|