| 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 abb28d39af6b814cf3d5e44226af3712041dfb39..aef2434708d13cc21dd7f91f981022849856f837 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -827,7 +827,7 @@ String HTMLInputElement::altText() const
|
| alt = fastGetAttribute(titleAttr);
|
| if (alt.isNull())
|
| alt = fastGetAttribute(valueAttr);
|
| - if (alt.isEmpty())
|
| + if (alt.isNull())
|
| alt = locale().queryString(WebLocalizedString::InputElementAltText);
|
| return alt;
|
| }
|
|
|