Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1625)

Unified Diff: public/web/WebTextInputType.h

Issue 995363002: Implement autocapitalize in Blink to be used by the embedder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update webexposed tests Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/tests/data/text_input_flags.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebTextInputType.h
diff --git a/public/web/WebTextInputType.h b/public/web/WebTextInputType.h
index 478ca213094b56e911902874f0f6d0c689b1e885..8bd37c04de3452813a4d2718470616d3cad3f421 100644
--- a/public/web/WebTextInputType.h
+++ b/public/web/WebTextInputType.h
@@ -81,7 +81,11 @@ enum WebTextInputFlags {
WebTextInputFlagAutocorrectOn = 1 << 2,
WebTextInputFlagAutocorrectOff = 1 << 3,
WebTextInputFlagSpellcheckOn = 1 << 4,
- WebTextInputFlagSpellcheckOff = 1 << 5
+ WebTextInputFlagSpellcheckOff = 1 << 5,
+ WebTextInputFlagAutocapitalizeNone = 1 << 6,
+ WebTextInputFlagAutocapitalizeCharacters = 1 << 7,
+ WebTextInputFlagAutocapitalizeWords = 1 << 8,
+ WebTextInputFlagAutocapitalizeSentences = 1 << 9
};
} // namespace blink
« no previous file with comments | « Source/web/tests/data/text_input_flags.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698