Chromium Code Reviews| Index: Source/core/css/CSSValueList.cpp |
| diff --git a/Source/core/css/CSSValueList.cpp b/Source/core/css/CSSValueList.cpp |
| index 26ab9c05432447a023a5890bea2b28af5d2ad7ae..060415245184b1422172576cdc0fa1d1cdbffe46 100644 |
| --- a/Source/core/css/CSSValueList.cpp |
| +++ b/Source/core/css/CSSValueList.cpp |
| @@ -127,7 +127,7 @@ String CSSValueList::customCssText(CssTextFormattingFlags formattingFlag) const |
| bool CSSValueList::equals(const CSSValueList& other) const |
| { |
| - return m_valueListSeparator == other.m_valueListSeparator && compareCSSValueVector<CSSValue>(m_values, other.m_values); |
| + return m_valueListSeparator == other.m_valueListSeparator && compareCSSValueVector<CSSValue>(Vector<RefPtr<CSSValue> >(m_values), Vector<RefPtr<CSSValue> >(other.m_values)); |
|
abarth-chromium
2013/09/11 18:16:41
This has got to be wrong. Can you add a FIXME com
|
| } |
| bool CSSValueList::equals(const CSSValue& other) const |