summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/html/HTMLAllCollection.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLAllCollection.h')
-rw-r--r--Source/WebCore/html/HTMLAllCollection.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/WebCore/html/HTMLAllCollection.h b/Source/WebCore/html/HTMLAllCollection.h
index 1dd3ede..443e855 100644
--- a/Source/WebCore/html/HTMLAllCollection.h
+++ b/Source/WebCore/html/HTMLAllCollection.h
@@ -32,11 +32,13 @@ namespace WebCore {
class HTMLAllCollection : public HTMLCollection {
public:
- static PassRefPtr<HTMLAllCollection> create(PassRefPtr<Node>);
+ static PassRefPtr<HTMLAllCollection> create(PassRefPtr<Node>, CollectionType = DocAll);
virtual ~HTMLAllCollection();
private:
- HTMLAllCollection(PassRefPtr<Node>);
+ HTMLAllCollection(PassRefPtr<Node>, CollectionType = DocAll);
+
+ virtual Element* itemAfter(Element*) const;
};
} // namespace WebCore