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

Side by Side Diff: Source/core/html/HTMLSelectElement.h

Issue 553983012: 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: Add NeedRebaseline for test code. Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) 4 * (C) 1999 Antti Koivisto (koivisto@kde.org)
5 * (C) 2000 Dirk Mueller (mueller@kde.org) 5 * (C) 2000 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
7 * Copyright (C) 2010 Google Inc. All rights reserved. 7 * Copyright (C) 2010 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 TypeAhead m_typeAhead; 221 TypeAhead m_typeAhead;
222 int m_size; 222 int m_size;
223 int m_lastOnChangeIndex; 223 int m_lastOnChangeIndex;
224 int m_activeSelectionAnchorIndex; 224 int m_activeSelectionAnchorIndex;
225 int m_activeSelectionEndIndex; 225 int m_activeSelectionEndIndex;
226 bool m_isProcessingUserDrivenChange; 226 bool m_isProcessingUserDrivenChange;
227 bool m_multiple; 227 bool m_multiple;
228 bool m_activeSelectionState; 228 bool m_activeSelectionState;
229 mutable bool m_shouldRecalcListItems; 229 mutable bool m_shouldRecalcListItems;
230 int m_suggestedIndex; 230 int m_suggestedIndex;
231 bool m_isAutofilledByPreview;
231 }; 232 };
232 233
233 } // namespace blink 234 } // namespace blink
234 235
235 #endif // HTMLSelectElement_h 236 #endif // HTMLSelectElement_h
OLDNEW
« no previous file with comments | « LayoutTests/platform/win/fast/forms/autofilled-expected.txt ('k') | Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698