| Index: Source/core/css/parser/CSSTokenizer-in.cpp
|
| diff --git a/Source/core/css/parser/CSSTokenizer-in.cpp b/Source/core/css/parser/CSSTokenizer-in.cpp
|
| index f7abffac9e35ef04e8578f173e0a3bca1330cccd..4097d9789099b11f87b4ad063daec05b45fe805e 100644
|
| --- a/Source/core/css/parser/CSSTokenizer-in.cpp
|
| +++ b/Source/core/css/parser/CSSTokenizer-in.cpp
|
| @@ -1166,7 +1166,6 @@ restartAfterComment:
|
| // Skip parenthesis
|
| ++currentCharacter<SrcCharacterType>();
|
| ++result;
|
| - ++yylval->string.m_length;
|
|
|
| if (m_token == URI) {
|
| m_token = FUNCTION;
|
| @@ -1310,8 +1309,8 @@ restartAfterComment:
|
| currentCharacter<SrcCharacterType>() = nextCharacter;
|
| }
|
| }
|
| + resultString.setLength(result - tokenStart<SrcCharacterType>());
|
| }
|
| - resultString.setLength(result - tokenStart<SrcCharacterType>());
|
| yylval->string = resultString;
|
| } else if (currentCharacter<SrcCharacterType>()[0] == '-' && currentCharacter<SrcCharacterType>()[1] == '>') {
|
| currentCharacter<SrcCharacterType>() += 2;
|
|
|