| Index: Source/core/css/parser/CSSTokenizer.cpp
|
| diff --git a/Source/core/css/parser/CSSTokenizer.cpp b/Source/core/css/parser/CSSTokenizer.cpp
|
| index 017e6a627a392754923013327ce28e4ee937a01b..442661800fa64a9716ef87d4dca8afdf6ca0f429 100644
|
| --- a/Source/core/css/parser/CSSTokenizer.cpp
|
| +++ b/Source/core/css/parser/CSSTokenizer.cpp
|
| @@ -729,12 +729,12 @@ UChar32 CSSTokenizer::consumeEscape()
|
| UChar32 codePoint = hexChars.toString().toUIntStrict(&ok, 16);
|
| ASSERT(ok);
|
| if (codePoint == 0 || (0xD800 <= codePoint && codePoint <= 0xDFFF) || codePoint > 0x10FFFF)
|
| - return WTF::Unicode::replacementCharacter;
|
| + return replacementCharacter;
|
| return codePoint;
|
| }
|
|
|
| if (cc == kEndOfFileMarker)
|
| - return WTF::Unicode::replacementCharacter;
|
| + return replacementCharacter;
|
| return cc;
|
| }
|
|
|
|
|