Index: Source/core/html/forms/TypeAhead.cpp |
diff --git a/Source/core/html/forms/TypeAhead.cpp b/Source/core/html/forms/TypeAhead.cpp |
index 5f2d2767fbb6b507f3ef857bf75650283ffb195e..b2b39602e55b06f62ef6f298973d2fb5f1734b9f 100644 |
--- a/Source/core/html/forms/TypeAhead.cpp |
+++ b/Source/core/html/forms/TypeAhead.cpp |
@@ -50,7 +50,7 @@ static String stripLeadingWhiteSpace(const String& string) |
unsigned i; |
for (i = 0; i < length; ++i) { |
- if (string[i] != noBreakSpace && !isSpaceOrNewline(string[i])) |
+ if (string[i] != noBreakSpaceCharacter && !isSpaceOrNewline(string[i])) |
break; |
} |