| 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 30 matching lines...) Expand all Loading... |
| 41 if (!rootNode.isContainerNode()) | 41 if (!rootNode.isContainerNode()) |
| 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; | |
| 52 } | 51 } |
| 53 | 52 |
| 54 void LiveNodeListBase::invalidateIdNameCacheMaps() const | 53 void LiveNodeListBase::invalidateIdNameCacheMaps() const |
| 55 { | 54 { |
| 56 ASSERT(hasIdNameCache()); | 55 ASSERT(hasIdNameCache()); |
| 57 static_cast<const HTMLCollection*>(this)->invalidateIdNameCacheMaps(); | 56 static_cast<const HTMLCollection*>(this)->invalidateIdNameCacheMaps(); |
| 58 } | 57 } |
| 59 | 58 |
| 60 Node* LiveNodeList::namedItem(const AtomicString& elementId) const | 59 Node* LiveNodeList::namedItem(const AtomicString& elementId) const |
| 61 { | 60 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 75 Node* node = item(i); | 74 Node* node = item(i); |
| 76 // FIXME: This should probably be using getIdAttribute instead of idForS
tyleResolution. | 75 // FIXME: This should probably be using getIdAttribute instead of idForS
tyleResolution. |
| 77 if (node->hasID() && toElement(node)->idForStyleResolution() == elementI
d) | 76 if (node->hasID() && toElement(node)->idForStyleResolution() == elementI
d) |
| 78 return node; | 77 return node; |
| 79 } | 78 } |
| 80 | 79 |
| 81 return 0; | 80 return 0; |
| 82 } | 81 } |
| 83 | 82 |
| 84 } // namespace WebCore | 83 } // namespace WebCore |
| OLD | NEW |