| Index: third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp b/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp
|
| index 148395bc9eebfdcd8bf2a5e538c86c02d6c05062..e06a4443358e3f0116c7443633c016991af96fd6 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTextFormControlElement.cpp
|
| @@ -139,7 +139,7 @@ static bool isNotLineBreak(UChar ch) { return ch != newlineCharacter && ch != ca
|
| bool HTMLTextFormControlElement::isPlaceholderEmpty() const
|
| {
|
| const AtomicString& attributeValue = fastGetAttribute(placeholderAttr);
|
| - return attributeValue.string().find(isNotLineBreak) == kNotFound;
|
| + return attributeValue.getString().find(isNotLineBreak) == kNotFound;
|
| }
|
|
|
| bool HTMLTextFormControlElement::placeholderShouldBeVisible() const
|
|
|