Index: Source/core/html/HTMLTextAreaElement.cpp |
diff --git a/Source/core/html/HTMLTextAreaElement.cpp b/Source/core/html/HTMLTextAreaElement.cpp |
index aaaf1ccf92a4f82bcded37af50bfea44df0fdfe1..8f7d9dc176bf6a8c8b6d993acedc112c9e523bae 100644 |
--- a/Source/core/html/HTMLTextAreaElement.cpp |
+++ b/Source/core/html/HTMLTextAreaElement.cpp |
@@ -639,4 +639,10 @@ void HTMLTextAreaElement::copyNonAttributePropertiesFromElement(const Element& s |
HTMLTextFormControlElement::copyNonAttributePropertiesFromElement(source); |
} |
+const AtomicString& HTMLTextAreaElement::defaultAutocapitalize() const |
+{ |
+ DEFINE_STATIC_LOCAL(const AtomicString, sentences, ("sentences", AtomicString::ConstructFromLiteral)); |
+ return sentences; |
} |
+ |
+} // namespace blink |