| Index: third_party/WebKit/Source/core/html/HTMLCollection.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLCollection.h b/third_party/WebKit/Source/core/html/HTMLCollection.h
|
| index 94a81ef3a10d0e6b043c0df3ca0646186f32d493..3834d387c7df3f4d0333b1b762daa2ef7084dbd4 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLCollection.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLCollection.h
|
| @@ -152,7 +152,7 @@ class CORE_EXPORT HTMLCollection
|
| map.add(key.impl(), nullptr).storedValue->value;
|
| if (!vector)
|
| vector = new HeapVector<Member<Element>>;
|
| - vector->append(element);
|
| + vector->push_back(element);
|
| }
|
|
|
| StringToElementsMap m_idCache;
|
|
|