Index: Source/core/html/forms/TextInputType.cpp |
diff --git a/Source/core/html/forms/TextInputType.cpp b/Source/core/html/forms/TextInputType.cpp |
index e600d73b3cd7f92eb10c9d99dcca760b0dc79958..06e04463bc9b434a3c3f69f9d09c4b9fae733da0 100644 |
--- a/Source/core/html/forms/TextInputType.cpp |
+++ b/Source/core/html/forms/TextInputType.cpp |
@@ -66,4 +66,10 @@ bool TextInputType::supportsInputModeAttribute() const |
return true; |
} |
+const AtomicString& TextInputType::defaultAutocapitalize() const |
+{ |
+ DEFINE_STATIC_LOCAL(const AtomicString, sentences, ("sentences", AtomicString::ConstructFromLiteral)); |
+ return sentences; |
+} |
+ |
} // namespace blink |