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 7db3439bbdb0df95ffcdc29185bca552ac30cfc7..1bd159908f8aa9186d90c5599487beba754c54ca 100644 |
--- a/third_party/WebKit/Source/core/dom/AttributeCollection.h |
+++ b/third_party/WebKit/Source/core/dom/AttributeCollection.h |
@@ -122,7 +122,7 @@ inline void MutableAttributeCollection::append(const QualifiedName& name, |
} |
inline void MutableAttributeCollection::remove(unsigned index) { |
- m_attributes.remove(index); |
+ m_attributes.erase(index); |
} |
template <typename Container, typename ContainerMemberType> |