Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(969)

Unified Diff: third_party/WebKit/Source/core/editing/InputMethodController.cpp

Issue 1847583003: Fix setComposingText when newCursorPosition != 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Store Position objects as local variables... Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/editing/InputMethodController.cpp
diff --git a/third_party/WebKit/Source/core/editing/InputMethodController.cpp b/third_party/WebKit/Source/core/editing/InputMethodController.cpp
index 0d88e0f740a014a088b732b6340f8ca8bef0e15e..503a93ed491c52ab9e8c34e5ff6bc0f396bb3ab2 100644
--- a/third_party/WebKit/Source/core/editing/InputMethodController.cpp
+++ b/third_party/WebKit/Source/core/editing/InputMethodController.cpp
@@ -239,7 +239,7 @@ void InputMethodController::cancelCompositionIfSelectionIsInvalid()
frame().chromeClient().didCancelCompositionOnSelectionChange();
}
-void InputMethodController::setComposition(const String& text, const Vector<CompositionUnderline>& underlines, unsigned selectionStart, unsigned selectionEnd)
+void InputMethodController::setComposition(const String& text, const Vector<CompositionUnderline>& underlines, int selectionStart, int selectionEnd)
{
Editor::RevealSelectionScope revealSelectionScope(&editor());
@@ -332,9 +332,30 @@ void InputMethodController::setComposition(const String& text, const Vector<Comp
if (baseNode->layoutObject())
baseNode->layoutObject()->setShouldDoFullPaintInvalidation();
- unsigned start = std::min(baseOffset + selectionStart, extentOffset);
- unsigned end = std::min(std::max(start, baseOffset + selectionEnd), extentOffset);
- Range* selectedRange = Range::create(baseNode->document(), baseNode, start, baseNode, end);
+ // In case of exceeding the left boundary.
+ int selectionOffsetsStart = static_cast<int>(getSelectionOffsets().start());
+ int start = std::max(selectionOffsetsStart + selectionStart, 0);
+ int end = std::max(selectionOffsetsStart + selectionEnd, start);
+
+ Element* rootEditableElement = frame().selection().rootEditableElement();
+ if (!rootEditableElement)
+ return;
+
+ // In case of exceeding the right boundary.
+ // If both |value1| and |value2| exceed right boundary,
+ // PlainTextRange(value1, value2)::createRange() will return a default
+ // value, which is [0,0]. In order to get the correct Position in that case,
+ // we should make sure |value1| is within range at least.
+ const EphemeralRange& startRange = PlainTextRange(0, start).createRange(*rootEditableElement);
+ const EphemeralRange& endRange = PlainTextRange(0, end).createRange(*rootEditableElement);
+
+ // TODO(yabinh): There should be a better way to create |startPosition| and
+ // |endPosition|. But for now, since we can't get |anchorNode| and |offset|,
+ // we can't create the 2 Position objects directly. So we use
+ // PlainTextRange::createRange as a workaround.
+ const Position& startPosition = startRange.endPosition();
+ const Position& endPosition = endRange.endPosition();
+ Range* selectedRange = Range::create(rootEditableElement->document(), startPosition, endPosition);
frame().selection().setSelectedRange(selectedRange, TextAffinity::Downstream, SelectionDirectionalMode::NonDirectional, NotUserTriggered);
if (underlines.isEmpty()) {

Powered by Google App Engine
This is Rietveld 408576698