Index: Source/core/html/HTMLSelectElement.h |
diff --git a/Source/core/html/HTMLSelectElement.h b/Source/core/html/HTMLSelectElement.h |
index 2f1f0e239c0aedc5dc5ebd5089297212c4502396..8268cc15a8c3508e851f1278dbdbc0c98d14753c 100644 |
--- a/Source/core/html/HTMLSelectElement.h |
+++ b/Source/core/html/HTMLSelectElement.h |
@@ -44,6 +44,8 @@ public: |
int selectedIndex() const; |
void setSelectedIndex(int); |
+ int suggestedIndex() const; |
+ void setSuggestedIndex(int); |
void optionSelectedByUser(int index, bool dispatchChangeEvent, bool allowMultipleSelection = false); |
@@ -67,6 +69,8 @@ public: |
String value() const; |
void setValue(const String&); |
+ String suggestedValue() const; |
+ void setSuggestedValue(const String&); |
PassRefPtr<HTMLOptionsCollection> options(); |
PassRefPtr<HTMLCollection> selectedOptions(); |
@@ -204,6 +208,7 @@ private: |
bool m_multiple; |
bool m_activeSelectionState; |
mutable bool m_shouldRecalcListItems; |
+ int m_suggestedIndex; |
}; |
} // namespace |