| Index: third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValueList.cpp b/third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| index 9b357fb7e79cf466bf869dcf3af8e3e6ce36ae0c..891715dd11d14f4b09ca6f1ff0b7183bcaf7af12 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| @@ -34,14 +34,14 @@ ASSERT_SIZE(CSSValueList, SameSizeAsCSSValueList);
|
|
|
| CSSValueList::CSSValueList(ClassType classType, ValueListSeparator listSeparator)
|
| : CSSValue(classType)
|
| + , m_valueListSeparator(listSeparator)
|
| {
|
| - m_valueListSeparator = listSeparator;
|
| }
|
|
|
| CSSValueList::CSSValueList(ValueListSeparator listSeparator)
|
| : CSSValue(ValueListClass)
|
| + , m_valueListSeparator(listSeparator)
|
| {
|
| - m_valueListSeparator = listSeparator;
|
| }
|
|
|
| bool CSSValueList::removeAll(const CSSValue& val)
|
|
|