| 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 6ec955a378747713f053473220bc47b4f43f01bd..4d20e829befcb69a02a9a138b2120e8277434443 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
|
| @@ -134,7 +134,7 @@ void BreakBlockquoteCommand::DoApply(EditingState* editing_state) {
|
| if (editing_state->IsAborted())
|
| return;
|
| SetEndingSelection(SelectionInDOMTree::Builder()
|
| - .Collapse(Position::BeforeNode(break_element))
|
| + .Collapse(Position::BeforeNode(*break_element))
|
| .SetIsDirectional(EndingSelection().IsDirectional())
|
| .Build());
|
| RebalanceWhitespace();
|
| @@ -152,7 +152,7 @@ void BreakBlockquoteCommand::DoApply(EditingState* editing_state) {
|
| // need to break the quote.
|
| if (is_last_vis_pos_in_node) {
|
| SetEndingSelection(SelectionInDOMTree::Builder()
|
| - .Collapse(Position::BeforeNode(break_element))
|
| + .Collapse(Position::BeforeNode(*break_element))
|
| .SetIsDirectional(EndingSelection().IsDirectional())
|
| .Build());
|
| RebalanceWhitespace();
|
| @@ -282,7 +282,7 @@ void BreakBlockquoteCommand::DoApply(EditingState* editing_state) {
|
|
|
| // Put the selection right before the break.
|
| SetEndingSelection(SelectionInDOMTree::Builder()
|
| - .Collapse(Position::BeforeNode(break_element))
|
| + .Collapse(Position::BeforeNode(*break_element))
|
| .SetIsDirectional(EndingSelection().IsDirectional())
|
| .Build());
|
| RebalanceWhitespace();
|
|
|