| Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| index f39c0326705308172e086d475e02edbbe811b426..db7028ed731658d6efcc6c3c8a636b2633f2306c 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -393,7 +393,7 @@ static CSSFontFeatureValue* consumeFontFeatureTag(CSSParserTokenRange& range)
|
| return nullptr;
|
| if (token.value().length() != tagNameLength)
|
| return nullptr;
|
| - AtomicString tag = AtomicString(token.value().toString());
|
| + AtomicString tag = token.value().toAtomicString();
|
| for (unsigned i = 0; i < tagNameLength; ++i) {
|
| // Limits the range of characters to 0x20-0x7E, following the tag name rules defiend in the OpenType specification.
|
| UChar character = tag[i];
|
|
|