| Index: Source/modules/indexeddb/IDBKeyPath.cpp
|
| diff --git a/Source/modules/indexeddb/IDBKeyPath.cpp b/Source/modules/indexeddb/IDBKeyPath.cpp
|
| index bc998ca50d851f88a49c6b5d6b2d9c5f5db18ce6..d34a5bb7c758fa7fe7f39e619f40288ce179d7ec 100644
|
| --- a/Source/modules/indexeddb/IDBKeyPath.cpp
|
| +++ b/Source/modules/indexeddb/IDBKeyPath.cpp
|
| @@ -102,7 +102,7 @@ static inline bool isIdentifierStartCharacter(UChar c)
|
|
|
| static inline bool isIdentifierCharacter(UChar c)
|
| {
|
| - return (category(c) & (unicodeLetter | unicodeCombiningMark | unicodeDigit | unicodeConnectorPunctuation)) || (c == '$') || (c == '_') || (c == zeroWidthNonJoiner) || (c == zeroWidthJoiner);
|
| + return (category(c) & (unicodeLetter | unicodeCombiningMark | unicodeDigit | unicodeConnectorPunctuation)) || (c == '$') || (c == '_') || (c == characterZeroWidthNonJoiner) || (c == characterZeroWidthJoiner);
|
| }
|
|
|
| } // namespace
|
|
|