| Index: Source/core/html/HTMLTextFormControlElement.cpp
|
| diff --git a/Source/core/html/HTMLTextFormControlElement.cpp b/Source/core/html/HTMLTextFormControlElement.cpp
|
| index 4887402dcb3c132fe8158a8d9160fbcc627cded0..dd3f8fa0aa02ab28300051677f675adf97af9823 100644
|
| --- a/Source/core/html/HTMLTextFormControlElement.cpp
|
| +++ b/Source/core/html/HTMLTextFormControlElement.cpp
|
| @@ -132,7 +132,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) == notFound;
|
| + return attributeValue.string().find(isNotLineBreak) == kNotFound;
|
| }
|
|
|
| bool HTMLTextFormControlElement::placeholderShouldBeVisible() const
|
|
|