| 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..82ded33f3d0abda83574e80d78bf96716367a53a 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] != characterNoBreakSpace && !isSpaceOrNewline(string[i]))
|
| break;
|
| }
|
|
|
|
|