| Index: Source/core/dom/Node.cpp
|
| diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
|
| index 66bbfbc6ed3a15a48c01fb584c3860fdf2c6ef0b..3757bdbb483f401f43f900089622b6a4584ce8b2 100644
|
| --- a/Source/core/dom/Node.cpp
|
| +++ b/Source/core/dom/Node.cpp
|
| @@ -48,7 +48,6 @@
|
| #include "core/dom/ProcessingInstruction.h"
|
| #include "core/dom/Range.h"
|
| #include "core/dom/StaticNodeList.h"
|
| -#include "core/dom/TagNodeList.h"
|
| #include "core/dom/TemplateContentDocumentFragment.h"
|
| #include "core/dom/Text.h"
|
| #include "core/dom/TreeScopeAdopter.h"
|
| @@ -1910,8 +1909,8 @@ void NodeListsNodeData::invalidateCaches(const QualifiedName* attrName)
|
| if (attrName)
|
| return;
|
|
|
| - TagNodeListCacheNS::iterator tagCacheEnd = m_tagNodeListCacheNS.end();
|
| - for (TagNodeListCacheNS::iterator it = m_tagNodeListCacheNS.begin(); it != tagCacheEnd; ++it)
|
| + TagCollectionCacheNS::iterator tagCacheEnd = m_tagCollectionCacheNS.end();
|
| + for (TagCollectionCacheNS::iterator it = m_tagCollectionCacheNS.begin(); it != tagCacheEnd; ++it)
|
| it->value->invalidateCache();
|
| }
|
|
|
|
|