| 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 c2fd4ca90b4d36b105dfd6d46ce602051769c8dc..c153d2ddc0076e39e10950bc888a68011fef8fc9 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/IndentOutdentCommand.cpp
|
| @@ -359,8 +359,7 @@ void IndentOutdentCommand::outdentRegion(
|
| break;
|
|
|
| document().updateStyleAndLayoutIgnorePendingStylesheets();
|
| - if (endOfNextParagraph.isNotNull() &&
|
| - !endOfNextParagraph.position().isConnected()) {
|
| + if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.isConnected()) {
|
| endOfCurrentParagraph = createVisiblePosition(endingSelection().end());
|
| endOfNextParagraph = endOfParagraph(nextPositionOf(endOfCurrentParagraph))
|
| .toPositionWithAffinity();
|
|
|