Index: Source/core/editing/BreakBlockquoteCommand.cpp |
diff --git a/Source/core/editing/BreakBlockquoteCommand.cpp b/Source/core/editing/BreakBlockquoteCommand.cpp |
index a36bc5bd358e723e30aa5178fa53347b6803a250..92c749ed65e6d4d3113cb7503d3a332749e33d22 100644 |
--- a/Source/core/editing/BreakBlockquoteCommand.cpp |
+++ b/Source/core/editing/BreakBlockquoteCommand.cpp |
@@ -200,8 +200,8 @@ void BreakBlockquoteCommand::doApply() |
RefPtrWillBeRawPtr<Element> ancestor = nullptr; |
RefPtrWillBeRawPtr<Element> clonedParent = nullptr; |
for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement(); |
- ancestor && ancestor != topBlockquote; |
- ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement()) |
+ ancestor && ancestor != topBlockquote; |
+ ancestor = ancestor->parentElement(), clonedParent = clonedParent->parentElement()) |
moveRemainingSiblingsToNewParent(ancestor->nextSibling(), 0, clonedParent); |
// If the startNode's original parent is now empty, remove it |