Chromium Code Reviews| Index: third_party/WebKit/public/web/WebInputElement.h |
| diff --git a/third_party/WebKit/public/web/WebInputElement.h b/third_party/WebKit/public/web/WebInputElement.h |
| index b9b89050a4147e5280813d9e2a848794cc1b07c9..cd5dcc8973428060776b36d7b80404369ee24f9f 100644 |
| --- a/third_party/WebKit/public/web/WebInputElement.h |
| +++ b/third_party/WebKit/public/web/WebInputElement.h |
| @@ -37,6 +37,7 @@ namespace blink { |
| class HTMLInputElement; |
| class WebElementCollection; |
| +class WebOptionElement; |
| // Provides readonly access to some properties of a DOM input element node. |
| class WebInputElement final : public WebFormControlElement { |
| @@ -76,7 +77,8 @@ public: |
| BLINK_EXPORT bool isChecked() const; |
| BLINK_EXPORT bool isMultiple() const; |
| - BLINK_EXPORT WebElementCollection dataListOptions() const; |
| + // Associated <datalsit> options which match to the current INPUT value. |
|
vabr (Chromium)
2016/07/26 12:05:03
typo: datalsit -> datalist
|
| + BLINK_EXPORT WebVector<WebOptionElement> filteredDataListOptions() const; |
| // Return the localized value for this input type. |
| BLINK_EXPORT WebString localizeValue(const WebString&) const; |