| Index: third_party/WebKit/Source/web/WebSearchableFormData.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebSearchableFormData.cpp b/third_party/WebKit/Source/web/WebSearchableFormData.cpp
|
| index cd96fabf086d576471919a1ed4ec804104691903..ac45e5096e76e1fff0e69711fb5ea7ee92849902 100644
|
| --- a/third_party/WebKit/Source/web/WebSearchableFormData.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSearchableFormData.cpp
|
| @@ -230,7 +230,7 @@ WebSearchableFormData::WebSearchableFormData(const WebFormElement& form, const W
|
|
|
| // Only consider forms that GET data.
|
| // Allow HTTPS only when an input element is provided.
|
| - if (equalIgnoringCase(formElement->getAttribute(methodAttr), "post")
|
| + if (equalIgnoringASCIICase(formElement->getAttribute(methodAttr), "post")
|
| || (!isHTTPFormSubmit(*formElement) && !inputElement))
|
| return;
|
|
|
|
|