Index: Source/modules/indexeddb/IDBKeyPath.cpp |
diff --git a/Source/modules/indexeddb/IDBKeyPath.cpp b/Source/modules/indexeddb/IDBKeyPath.cpp |
index bc998ca50d851f88a49c6b5d6b2d9c5f5db18ce6..159fa9a451b329490d6e17f2ef8b09fba04a53a8 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 == zeroWidthNonJoinerCharacter) || (c == zeroWidthJoinerCharacter); |
} |
} // namespace |