OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2004, 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 return 0; | 42 return 0; |
43 return toContainerNode(&rootNode); | 43 return toContainerNode(&rootNode); |
44 } | 44 } |
45 | 45 |
46 void LiveNodeListBase::invalidateCache() const | 46 void LiveNodeListBase::invalidateCache() const |
47 { | 47 { |
48 m_cachedItem = 0; | 48 m_cachedItem = 0; |
49 m_isLengthCacheValid = false; | 49 m_isLengthCacheValid = false; |
50 m_isItemCacheValid = false; | 50 m_isItemCacheValid = false; |
51 m_isNameCacheValid = false; | 51 m_isNameCacheValid = false; |
52 m_isItemRefElementsCacheValid = false; | |
53 if (isNodeList(type())) | 52 if (isNodeList(type())) |
54 return; | 53 return; |
55 | 54 |
56 const HTMLCollection* cacheBase = static_cast<const HTMLCollection*>(this); | 55 const HTMLCollection* cacheBase = static_cast<const HTMLCollection*>(this); |
57 cacheBase->m_idCache.clear(); | 56 cacheBase->m_idCache.clear(); |
58 cacheBase->m_nameCache.clear(); | 57 cacheBase->m_nameCache.clear(); |
59 cacheBase->m_cachedElementsArrayOffset = 0; | 58 cacheBase->m_cachedElementsArrayOffset = 0; |
60 } | 59 } |
61 | 60 |
62 void LiveNodeListBase::invalidateIdNameCacheMaps() const | 61 void LiveNodeListBase::invalidateIdNameCacheMaps() const |
(...skipping 22 matching lines...) Expand all Loading... |
85 Node* node = item(i); | 84 Node* node = item(i); |
86 // FIXME: This should probably be using getIdAttribute instead of idForS
tyleResolution. | 85 // FIXME: This should probably be using getIdAttribute instead of idForS
tyleResolution. |
87 if (node->hasID() && toElement(node)->idForStyleResolution() == elementI
d) | 86 if (node->hasID() && toElement(node)->idForStyleResolution() == elementI
d) |
88 return node; | 87 return node; |
89 } | 88 } |
90 | 89 |
91 return 0; | 90 return 0; |
92 } | 91 } |
93 | 92 |
94 } // namespace WebCore | 93 } // namespace WebCore |
OLD | NEW |