| Index: Source/core/editing/CompositeEditCommand.cpp
|
| diff --git a/Source/core/editing/CompositeEditCommand.cpp b/Source/core/editing/CompositeEditCommand.cpp
|
| index f41250af8056438c78e9f4a350c5daa32d9ee7c1..f450f39a50e55eebb6626fb0c77c8c62a4e63225 100644
|
| --- a/Source/core/editing/CompositeEditCommand.cpp
|
| +++ b/Source/core/editing/CompositeEditCommand.cpp
|
| @@ -1128,7 +1128,7 @@ void CompositeEditCommand::moveParagraphWithClones(const VisiblePosition& startO
|
| cloneParagraphUnderNewElement(start, end, outerNode, blockElement);
|
|
|
| setEndingSelection(VisibleSelection(start, end, DOWNSTREAM));
|
| - deleteSelection(false, false, false, false);
|
| + deleteSelection(false, false, false);
|
|
|
| // There are bugs in deletion when it removes a fully selected table/list.
|
| // It expands and removes the entire table/list, but will let content
|
| @@ -1227,7 +1227,7 @@ void CompositeEditCommand::moveParagraphs(const VisiblePosition& startOfParagrap
|
|
|
| setEndingSelection(VisibleSelection(start, end, DOWNSTREAM));
|
| document().frame()->spellChecker().clearMisspellingsAndBadGrammar(endingSelection());
|
| - deleteSelection(false, false, false, false);
|
| + deleteSelection(false, false, false);
|
|
|
| ASSERT(destination.deepEquivalent().inDocument());
|
| cleanupAfterDeletion(destination);
|
|
|