| 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 8822908e52338cc5774df5802ec80d830a3a770b..1cad530dd178e87cabe9a85da748103b8bbdbe04 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSValueList.cpp
|
| @@ -28,14 +28,14 @@ namespace blink {
|
|
|
| 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)
|
|
|