Index: Source/core/dom/LiveNodeList.cpp |
diff --git a/Source/core/dom/LiveNodeList.cpp b/Source/core/dom/LiveNodeList.cpp |
index 7425e9cbf99404b4ed3f77ba930571e578d62d78..a577323050def4beb9cf566c72f49eee13f59776 100644 |
--- a/Source/core/dom/LiveNodeList.cpp |
+++ b/Source/core/dom/LiveNodeList.cpp |
@@ -60,4 +60,11 @@ Element* LiveNodeList::traverseBackwardToOffset(unsigned offset, Element& curren |
return traverseMatchingElementsBackwardToOffset(*this, offset, currentNode, currentOffset); |
} |
+void LiveNodeList::trace(Visitor* visitor) |
+{ |
+ visitor->trace(m_collectionIndexCache); |
+ LiveNodeListBase::trace(visitor); |
+ NodeList::trace(visitor); |
+} |
+ |
} // namespace WebCore |