| Index: Source/core/css/CSSParser-in.cpp
|
| diff --git a/Source/core/css/CSSParser-in.cpp b/Source/core/css/CSSParser-in.cpp
|
| index 873c3471a8f9cd410d435620101cc53e3869a61f..b7ba9cf28e155897035c5939d502c6a246cb1c03 100644
|
| --- a/Source/core/css/CSSParser-in.cpp
|
| +++ b/Source/core/css/CSSParser-in.cpp
|
| @@ -1228,7 +1228,7 @@ bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID p
|
| deleteFontFaceOnlyValues();
|
| if (!m_parsedProperties.isEmpty()) {
|
| ok = true;
|
| - declaration->addParsedProperties(m_parsedProperties);
|
| + declaration->addParsedProperties(Vector<CSSProperty>(m_parsedProperties));
|
| clearProperties();
|
| }
|
|
|
| @@ -1341,7 +1341,7 @@ bool CSSParser::parseDeclaration(MutableStylePropertySet* declaration, const Str
|
| deleteFontFaceOnlyValues();
|
| if (!m_parsedProperties.isEmpty()) {
|
| ok = true;
|
| - declaration->addParsedProperties(m_parsedProperties);
|
| + declaration->addParsedProperties(Vector<CSSProperty>(m_parsedProperties));
|
| clearProperties();
|
| }
|
|
|
|
|