| Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| index 79dddf6f4010a4b64e928445c9bf0492cc614a06..dba5ef41a41c4e8c6a006f724806722e8520a8bc 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -1586,7 +1586,7 @@ HTMLInputElement::filteredDataListOptions() const {
|
| Vector<String> emails;
|
| value.split(',', true, emails);
|
| if (!emails.isEmpty())
|
| - value = emails.last().stripWhiteSpace();
|
| + value = emails.back().stripWhiteSpace();
|
| }
|
|
|
| HTMLDataListOptionsCollection* options = dataList->options();
|
|
|