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

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

Issue 2878613002: INPUT/TEXTAREA elements: Fix incorrect selectionStart/selectionEnd values after blur. (Closed)
Patch Set: rename FrameSelection::NotifyLayoutObjectOfSelectionChange() Created 3 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/FrameSelection.cpp
diff --git a/third_party/WebKit/Source/core/editing/FrameSelection.cpp b/third_party/WebKit/Source/core/editing/FrameSelection.cpp
index 54daa8e576628fe5f714472a03123bd96cdba958..2da08fdc929c379508ec88acf23a25f2786b6e2e 100644
--- a/third_party/WebKit/Source/core/editing/FrameSelection.cpp
+++ b/third_party/WebKit/Source/core/editing/FrameSelection.cpp
@@ -218,8 +218,14 @@ bool FrameSelection::SetSelectionDeprecated(
const SelectionInDOMTree old_selection_in_dom_tree =
selection_editor_->GetSelectionInDOMTree();
- if (old_selection_in_dom_tree == new_selection)
+ if (old_selection_in_dom_tree == new_selection) {
+ // Even if DOM representation of text selection is not changed,
+ // selectionStart / selectionEnd IDL attributes of a text control can be
+ // changed.
yoichio 2017/05/12 01:54:00 Could you explain why?
tkent 2017/05/12 02:01:01 e.g. DIV id=inner-editor #text "line-1\n" #te
+ NotifyTextControlOfSelectionChange(
yosin_UTC9 2017/05/12 01:37:00 Can we update cached selection in "webkitEditableC
tkent 2017/05/12 02:01:01 Patch Set 3 follows it. Yes, handling in TextCont
+ SelectionOptionsToUserTriggered(options));
return false;
+ }
selection_editor_->SetSelection(new_selection);
ScheduleVisualUpdateForPaintInvalidationIfNeeded();
@@ -269,7 +275,7 @@ void FrameSelection::DidSetSelectionDeprecated(SetSelectionOptions options,
}
EUserTriggered user_triggered = SelectionOptionsToUserTriggered(options);
- NotifyLayoutObjectOfSelectionChange(user_triggered);
+ NotifyTextControlOfSelectionChange(user_triggered);
if (user_triggered == kUserTriggered) {
ScrollAlignment alignment;
@@ -708,7 +714,7 @@ void FrameSelection::SelectAll() {
.SetIsHandleVisible(IsHandleVisible())
.Build());
SelectFrameElementInParentIfFullySelected();
- NotifyLayoutObjectOfSelectionChange(kUserTriggered);
+ NotifyTextControlOfSelectionChange(kUserTriggered);
}
bool FrameSelection::SetSelectedRange(const EphemeralRange& range,
@@ -840,7 +846,7 @@ void FrameSelection::UpdateAppearance() {
layout_selection_->SetHasPendingSelection();
}
-void FrameSelection::NotifyLayoutObjectOfSelectionChange(
+void FrameSelection::NotifyTextControlOfSelectionChange(
EUserTriggered user_triggered) {
TextControlElement* text_control =
EnclosingTextControl(GetSelectionInDOMTree().Base());

Powered by Google App Engine
This is Rietveld 408576698