| Index: third_party/WebKit/Source/core/html/CollectionItemsCache.h
|
| diff --git a/third_party/WebKit/Source/core/html/CollectionItemsCache.h b/third_party/WebKit/Source/core/html/CollectionItemsCache.h
|
| index 2b88dcec0fa67407a22d13c12395ce5832e08377..4ab7209a874b7ea44c751c890a47e32d846c1f63 100644
|
| --- a/third_party/WebKit/Source/core/html/CollectionItemsCache.h
|
| +++ b/third_party/WebKit/Source/core/html/CollectionItemsCache.h
|
| @@ -86,7 +86,7 @@ unsigned CollectionItemsCache<Collection, NodeType>::nodeCount(
|
| NodeType* currentNode = collection.traverseToFirst();
|
| unsigned currentIndex = 0;
|
| while (currentNode) {
|
| - m_cachedList.append(currentNode);
|
| + m_cachedList.push_back(currentNode);
|
| currentNode = collection.traverseForwardToOffset(
|
| currentIndex + 1, *currentNode, currentIndex);
|
| }
|
|
|