| Index: third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp b/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp
|
| index 5be65c66a173b60bdc950ec29caf7ea5bf6b2df2..e064273dc5ce623303b07dcd9c5991f1fe034154 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/DeleteSelectionCommand.cpp
|
| @@ -129,7 +129,7 @@ void DeleteSelectionCommand::InitializeStartEnd(Position& start,
|
| if (isHTMLHRElement(*start.AnchorNode()))
|
| start = Position::BeforeNode(*start.AnchorNode());
|
| else if (isHTMLHRElement(*end.AnchorNode()))
|
| - end = Position::AfterNode(end.AnchorNode());
|
| + end = Position::AfterNode(*end.AnchorNode());
|
|
|
| // FIXME: This is only used so that moveParagraphs can avoid the bugs in
|
| // special element expansion.
|
|
|