| Index: third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp b/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| index ec54fa58e5244629862f73d92c8abae00e9139cc..cf0dcd96926d484d0cf3c213f98f079ce6cac758 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| @@ -231,7 +231,7 @@ void IndentOutdentCommand::outdentParagraph(EditingState* editingState)
|
| insertNodeBefore(placeholder, splitBlockquoteNode, editingState);
|
| if (editingState->isAborted())
|
| return;
|
| - moveParagraph(startOfParagraphToMove, endOfParagraphToMove, createVisiblePosition(positionBeforeNode(placeholder)), editingState, true);
|
| + moveParagraph(startOfParagraphToMove, endOfParagraphToMove, createVisiblePosition(Position::beforeNode(placeholder)), editingState, true);
|
| }
|
|
|
| // FIXME: We should merge this function with ApplyBlockElementCommand::formatSelection
|
|
|