| Index: third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h
|
| diff --git a/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h b/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h
|
| index 7bf4130b507ee661c61d1360a530b3f2f620e034..2bea7c4b672cbfd6dce0881322928401fbbf0be6 100644
|
| --- a/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h
|
| +++ b/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h
|
| @@ -100,7 +100,7 @@ class SVGListPropertyHelper : public SVGPropertyHelper<Derived> {
|
|
|
| void append(ItemPropertyType* newItem) {
|
| ASSERT(newItem);
|
| - m_values.append(newItem);
|
| + m_values.push_back(newItem);
|
| newItem->setOwnerList(this);
|
| }
|
|
|
|
|