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

Unified Diff: third_party/WebKit/Source/core/editing/iterators/TextIteratorFlags.h

Issue 2649923012: Avoid reporting space as NBSP in TextInputState. (Closed)
Patch Set: Code review comments Created 3 years, 11 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
Index: third_party/WebKit/Source/core/editing/iterators/TextIteratorFlags.h
diff --git a/third_party/WebKit/Source/core/editing/iterators/TextIteratorFlags.h b/third_party/WebKit/Source/core/editing/iterators/TextIteratorFlags.h
index 6f06e8e6daef22938d08063f499d6777f2f8826c..8183136c79cf1177469209e53c46c4c119b78674 100644
--- a/third_party/WebKit/Source/core/editing/iterators/TextIteratorFlags.h
+++ b/third_party/WebKit/Source/core/editing/iterators/TextIteratorFlags.h
@@ -44,6 +44,7 @@ enum TextIteratorBehavior {
TextIteratorForWindowFind = 1 << 11,
TextIteratorExcludeAutofilledValue = 1 << 12,
TextIteratorCollapseTrailingSpace = 1 << 13,
+ TextIteratorEmitsSpaceForNbsp = 1 << 14,
};
typedef unsigned TextIteratorBehaviorFlags;

Powered by Google App Engine
This is Rietveld 408576698