diff options
Diffstat (limited to 'Source/WebCore/dom/DynamicNodeList.h')
-rw-r--r-- | Source/WebCore/dom/DynamicNodeList.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WebCore/dom/DynamicNodeList.h b/Source/WebCore/dom/DynamicNodeList.h index db133b7..9c8f3cc 100644 --- a/Source/WebCore/dom/DynamicNodeList.h +++ b/Source/WebCore/dom/DynamicNodeList.h @@ -60,6 +60,7 @@ namespace WebCore { // Other methods (not part of DOM) void invalidateCache(); + Node* rootNode() const { return m_rootNode.get(); } protected: DynamicNodeList(PassRefPtr<Node> rootNode); @@ -72,6 +73,7 @@ namespace WebCore { bool m_ownsCaches; private: + virtual bool isDynamicNodeList() const; Node* itemForwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const; Node* itemBackwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const; }; |