summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLAllCollection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLAllCollection.cpp')
-rw-r--r--Source/WebCore/html/HTMLAllCollection.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/WebCore/html/HTMLAllCollection.cpp b/Source/WebCore/html/HTMLAllCollection.cpp
index c68b00608..e769b2641 100644
--- a/Source/WebCore/html/HTMLAllCollection.cpp
+++ b/Source/WebCore/html/HTMLAllCollection.cpp
@@ -36,7 +36,7 @@ PassRefPtr<HTMLAllCollection> HTMLAllCollection::create(Document* document)
}
HTMLAllCollection::HTMLAllCollection(Document* document)
- : HTMLCollection(document, DocAll)
+ : HTMLCollection(document, DocAll, SupportItemBefore)
{
}
@@ -46,7 +46,6 @@ HTMLAllCollection::~HTMLAllCollection()
Node* HTMLAllCollection::namedItemWithIndex(const AtomicString& name, unsigned index) const
{
- invalidateCacheIfNeeded();
updateNameCache();
if (Vector<Element*>* cache = idCache(name)) {