| Index: Source/core/dom/LiveNodeListBase.h | 
| diff --git a/Source/core/dom/LiveNodeListBase.h b/Source/core/dom/LiveNodeListBase.h | 
| index 6208726c3ac257036d72f4c85bdbf1f57ee76ff9..dbef5afcefe5c0aff7c3f206c18c3534bb961457 100644 | 
| --- a/Source/core/dom/LiveNodeListBase.h | 
| +++ b/Source/core/dom/LiveNodeListBase.h | 
| @@ -67,7 +67,7 @@ public: | 
| ALWAYS_INLINE bool isRootedAtDocument() const { return m_rootType == NodeListIsRootedAtDocument; } | 
| 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)) | 
|  |