| Index: Source/core/html/HTMLTextAreaElement.cpp
|
| diff --git a/Source/core/html/HTMLTextAreaElement.cpp b/Source/core/html/HTMLTextAreaElement.cpp
|
| index 751d378a598c150e50b68a2da65b0f1be8d6dcca..dcb5386f10078a40d8fad15e3d9c2abfe198cb68 100644
|
| --- a/Source/core/html/HTMLTextAreaElement.cpp
|
| +++ b/Source/core/html/HTMLTextAreaElement.cpp
|
| @@ -433,6 +433,20 @@ void HTMLTextAreaElement::setMaxLength(int newValue, ExceptionState& exceptionSt
|
| setIntegralAttribute(maxlengthAttr, newValue);
|
| }
|
|
|
| +String HTMLTextAreaElement::suggestedValue() const
|
| +{
|
| + return m_suggestedValue;
|
| +}
|
| +
|
| +void HTMLTextAreaElement::setSuggestedValue(const String& value)
|
| +{
|
| + m_suggestedValue = value;
|
| + setInnerTextValue(m_suggestedValue);
|
| + updatePlaceholderVisibility(false);
|
| + setNeedsStyleRecalc();
|
| + setFormControlValueMatchesRenderer(true);
|
| +}
|
| +
|
| String HTMLTextAreaElement::validationMessage() const
|
| {
|
| if (!willValidate())
|
|
|