| Index: Source/core/css/CSSParserValues.h
|
| diff --git a/Source/core/css/CSSParserValues.h b/Source/core/css/CSSParserValues.h
|
| index fd1c475a3f3254d4e0da2f1e125d4fd9a97f1e8e..8688cf8c71b191052d03b9965ce3b578067d7214 100644
|
| --- a/Source/core/css/CSSParserValues.h
|
| +++ b/Source/core/css/CSSParserValues.h
|
| @@ -70,6 +70,8 @@ struct CSSParserString {
|
| m_is8Bit = false;
|
| }
|
|
|
| + void trimTrailingWhitespace();
|
| +
|
| bool is8Bit() const { return m_is8Bit; }
|
| const LChar* characters8() const { ASSERT(is8Bit()); return m_data.characters8; }
|
| const UChar* characters16() const { ASSERT(!is8Bit()); return m_data.characters16; }
|
|
|