| Index: third_party/WebKit/Source/core/dom/AttributeCollection.h
|
| diff --git a/third_party/WebKit/Source/core/dom/AttributeCollection.h b/third_party/WebKit/Source/core/dom/AttributeCollection.h
|
| index 6221ae9f96389e176457106507c470903e95be8c..6e80e61f6e6c5d68b7c1651395e0b4f19fa61341 100644
|
| --- a/third_party/WebKit/Source/core/dom/AttributeCollection.h
|
| +++ b/third_party/WebKit/Source/core/dom/AttributeCollection.h
|
| @@ -118,7 +118,7 @@ class MutableAttributeCollection
|
|
|
| inline void MutableAttributeCollection::append(const QualifiedName& name,
|
| const AtomicString& value) {
|
| - m_attributes.append(Attribute(name, value));
|
| + m_attributes.push_back(Attribute(name, value));
|
| }
|
|
|
| inline void MutableAttributeCollection::remove(unsigned index) {
|
|
|