Index: Source/core/html/HTMLTextAreaElement.h |
diff --git a/Source/core/html/HTMLTextAreaElement.h b/Source/core/html/HTMLTextAreaElement.h |
index 7f157ca116aa9d1105dde57db7c2e293af449169..91e8bede005e2aa4485368fa466e8e5ba6cc30ce 100644 |
--- a/Source/core/html/HTMLTextAreaElement.h |
+++ b/Source/core/html/HTMLTextAreaElement.h |
@@ -48,6 +48,10 @@ public: |
int textLength() const { return value().length(); } |
virtual int maxLength() const; |
void setMaxLength(int, ExceptionState&); |
+ |
+ String suggestedValue() const; |
+ void setSuggestedValue(const String&); |
+ |
// For ValidityState |
virtual String validationMessage() const OVERRIDE; |
virtual bool valueMissing() const OVERRIDE; |
@@ -124,6 +128,7 @@ private: |
WrapMethod m_wrap; |
mutable String m_value; |
mutable bool m_isDirty; |
+ String m_suggestedValue; |
}; |
DEFINE_NODE_TYPE_CASTS(HTMLTextAreaElement, hasTagName(HTMLNames::textareaTag)); |