| 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, 2005, 2006, 2007 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #include "config.h" | 24 #include "config.h" |
| 25 #include "core/dom/TagNodeList.h" | 25 #include "core/dom/TagNodeList.h" |
| 26 | 26 |
| 27 #include "core/dom/NodeRareData.h" | 27 #include "core/dom/NodeRareData.h" |
| 28 #include "wtf/Assertions.h" | 28 #include "wtf/Assertions.h" |
| 29 | 29 |
| 30 namespace WebCore { | 30 namespace WebCore { |
| 31 | 31 |
| 32 TagNodeList::TagNodeList(PassRefPtr<Node> rootNode, CollectionType type, const A
tomicString& namespaceURI, const AtomicString& localName) | 32 TagNodeList::TagNodeList(PassRefPtr<ContainerNode> rootNode, CollectionType type
, const AtomicString& namespaceURI, const AtomicString& localName) |
| 33 : LiveNodeList(rootNode, type, DoNotInvalidateOnAttributeChanges) | 33 : LiveNodeList(rootNode, type, DoNotInvalidateOnAttributeChanges) |
| 34 , m_namespaceURI(namespaceURI) | 34 , m_namespaceURI(namespaceURI) |
| 35 , m_localName(localName) | 35 , m_localName(localName) |
| 36 { | 36 { |
| 37 ASSERT(m_namespaceURI.isNull() || !m_namespaceURI.isEmpty()); | 37 ASSERT(m_namespaceURI.isNull() || !m_namespaceURI.isEmpty()); |
| 38 } | 38 } |
| 39 | 39 |
| 40 TagNodeList::~TagNodeList() | 40 TagNodeList::~TagNodeList() |
| 41 { | 41 { |
| 42 if (m_namespaceURI == starAtom) | 42 if (m_namespaceURI == starAtom) |
| 43 ownerNode()->nodeLists()->removeCacheWithAtomicName(this, type(), m_loca
lName); | 43 ownerNode()->nodeLists()->removeCacheWithAtomicName(this, type(), m_loca
lName); |
| 44 else | 44 else |
| 45 ownerNode()->nodeLists()->removeCacheWithQualifiedName(this, m_namespace
URI, m_localName); | 45 ownerNode()->nodeLists()->removeCacheWithQualifiedName(this, m_namespace
URI, m_localName); |
| 46 } | 46 } |
| 47 | 47 |
| 48 bool TagNodeList::nodeMatches(const Element& testNode) const | 48 bool TagNodeList::nodeMatches(const Element& testNode) const |
| 49 { | 49 { |
| 50 // Implements http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#conce
pt-getelementsbytagnamens | 50 // Implements http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#conce
pt-getelementsbytagnamens |
| 51 if (m_localName != starAtom && m_localName != testNode.localName()) | 51 if (m_localName != starAtom && m_localName != testNode.localName()) |
| 52 return false; | 52 return false; |
| 53 | 53 |
| 54 return m_namespaceURI == starAtom || m_namespaceURI == testNode.namespaceURI
(); | 54 return m_namespaceURI == starAtom || m_namespaceURI == testNode.namespaceURI
(); |
| 55 } | 55 } |
| 56 | 56 |
| 57 HTMLTagNodeList::HTMLTagNodeList(PassRefPtr<Node> rootNode, const AtomicString&
localName) | 57 HTMLTagNodeList::HTMLTagNodeList(PassRefPtr<ContainerNode> rootNode, const Atomi
cString& localName) |
| 58 : TagNodeList(rootNode, HTMLTagNodeListType, starAtom, localName) | 58 : TagNodeList(rootNode, HTMLTagNodeListType, starAtom, localName) |
| 59 , m_loweredLocalName(localName.lower()) | 59 , m_loweredLocalName(localName.lower()) |
| 60 { | 60 { |
| 61 } | 61 } |
| 62 | 62 |
| 63 bool HTMLTagNodeList::nodeMatches(const Element& testNode) const | 63 bool HTMLTagNodeList::nodeMatches(const Element& testNode) const |
| 64 { | 64 { |
| 65 return nodeMatchesInlined(testNode); | 65 return nodeMatchesInlined(testNode); |
| 66 } | 66 } |
| 67 | 67 |
| 68 } // namespace WebCore | 68 } // namespace WebCore |
| OLD | NEW |