| Index: third_party/WebKit/Source/core/css/CSSValueList.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSValueList.h b/third_party/WebKit/Source/core/css/CSSValueList.h
|
| index 08457fd9d84f0185e7e034e2b1ef67b85fdc5b56..9cef3164a7284b07abbce3ebd6e29c8c38dda712 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSValueList.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSValueList.h
|
| @@ -53,7 +53,7 @@ class CORE_EXPORT CSSValueList : public CSSValue {
|
| size_t length() const { return m_values.size(); }
|
| const CSSValue& item(size_t index) const { return *m_values[index]; }
|
|
|
| - void append(const CSSValue& value) { m_values.append(value); }
|
| + void append(const CSSValue& value) { m_values.push_back(value); }
|
| bool removeAll(const CSSValue&);
|
| bool hasValue(const CSSValue&) const;
|
| CSSValueList* copy() const;
|
|
|