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

Unified Diff: Source/web/PopupListBox.cpp

Issue 1119663002: Making Unicode character names consistent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comment fixes Created 5 years, 7 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: Source/web/PopupListBox.cpp
diff --git a/Source/web/PopupListBox.cpp b/Source/web/PopupListBox.cpp
index e8d0f35d05a4ee11eae6dc4275d0fe4d40a1a872..4a47f3366b63b8e9519912ed080763cfbafe7070 100644
--- a/Source/web/PopupListBox.cpp
+++ b/Source/web/PopupListBox.cpp
@@ -286,7 +286,7 @@ static String stripLeadingWhiteSpace(const String& string)
int length = string.length();
int i;
for (i = 0; i < length; ++i)
- if (string[i] != noBreakSpace
+ if (string[i] != noBreakSpaceCharacter
&& !isSpaceOrNewline(string[i]))
break;

Powered by Google App Engine
This is Rietveld 408576698