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

Unified Diff: Source/core/html/HTMLSelectElement.cpp

Issue 597853004: Revert of Turn off autofill highlight when changing option in an autofilled <select> element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 3 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
« no previous file with comments | « Source/core/html/HTMLSelectElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLSelectElement.cpp
diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp
index 2935fb17d208b0cf001ac50ab9c836ccb6535242..015a8812751d7e2facc25299a71bb46df48a788d 100644
--- a/Source/core/html/HTMLSelectElement.cpp
+++ b/Source/core/html/HTMLSelectElement.cpp
@@ -82,7 +82,6 @@ HTMLSelectElement::HTMLSelectElement(Document& document, HTMLFormElement* form)
, m_activeSelectionState(false)
, m_shouldRecalcListItems(false)
, m_suggestedIndex(-1)
- , m_isAutofilledByPreview(false)
{
}
@@ -270,8 +269,6 @@ void HTMLSelectElement::setValue(const String &value, bool sendEvents)
int previousSelectedIndex = selectedIndex();
setSuggestedIndex(-1);
- if (m_isAutofilledByPreview)
- setAutofilled(false);
setSelectedIndex(optionIndex);
if (sendEvents && previousSelectedIndex != selectedIndex()) {
@@ -307,7 +304,6 @@ void HTMLSelectElement::setSuggestedValue(const String& value)
if (isHTMLOptionElement(items[i])) {
if (toHTMLOptionElement(items[i])->value() == value) {
setSuggestedIndex(optionIndex);
- m_isAutofilledByPreview = true;
return;
}
optionIndex++;
@@ -928,9 +924,6 @@ void HTMLSelectElement::selectOption(int optionIndex, SelectOptionFlags flags)
const WillBeHeapVector<RawPtrWillBeMember<HTMLElement> >& items = listItems();
int listIndex = optionToListIndex(optionIndex);
- if (selectedIndex() != optionIndex && this->isAutofilled())
- setAutofilled(false);
-
HTMLElement* element = 0;
if (listIndex >= 0) {
element = items[listIndex];
« no previous file with comments | « Source/core/html/HTMLSelectElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698