summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/dom/NodeList.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/NodeList.h')
-rw-r--r--Source/WebCore/dom/NodeList.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/WebCore/dom/NodeList.h b/Source/WebCore/dom/NodeList.h
index d4e18aa..7639d37 100644
--- a/Source/WebCore/dom/NodeList.h
+++ b/Source/WebCore/dom/NodeList.h
@@ -39,6 +39,9 @@ namespace WebCore {
virtual unsigned length() const = 0;
virtual Node* item(unsigned index) const = 0;
virtual Node* itemWithName(const AtomicString&) const = 0;
+
+ // Other methods (not part of DOM)
+ virtual bool isDynamicNodeList() const { return false; }
};
} // namespace WebCore