Index: Source/core/dom/LiveNodeListBase.h |
diff --git a/Source/core/dom/LiveNodeListBase.h b/Source/core/dom/LiveNodeListBase.h |
index 098d8ddfcce190a3990ec3465e337ff0c38c3ca4..ff219534d737dd8b990b5dca95943933b0d4d8a0 100644 |
--- a/Source/core/dom/LiveNodeListBase.h |
+++ b/Source/core/dom/LiveNodeListBase.h |
@@ -66,7 +66,7 @@ public: |
ALWAYS_INLINE bool isRootedAtDocument() const { return m_rootType == NodeListIsRootedAtDocument || m_rootType == NodeListIsRootedAtDocumentIfOwnerHasItemrefAttr; } |
ALWAYS_INLINE NodeListInvalidationType invalidationType() const { return static_cast<NodeListInvalidationType>(m_invalidationType); } |
ALWAYS_INLINE CollectionType type() const { return static_cast<CollectionType>(m_collectionType); } |
- ContainerNode* ownerNode() const { return m_ownerNode.get(); } |
+ ContainerNode& ownerNode() const { return *m_ownerNode; } |
ALWAYS_INLINE void invalidateCache(const QualifiedName* attrName) const |
{ |
if (!attrName || shouldInvalidateTypeOnAttributeChange(invalidationType(), *attrName)) |