| 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 21 matching lines...) Expand all Loading... |
| 32 TagCollection::TagCollection(ContainerNode& rootNode, CollectionType type, const
AtomicString& namespaceURI, const AtomicString& localName) | 32 TagCollection::TagCollection(ContainerNode& rootNode, CollectionType type, const
AtomicString& namespaceURI, const AtomicString& localName) |
| 33 : HTMLCollection(rootNode, type, DoesNotOverrideItemAfter) | 33 : HTMLCollection(rootNode, type, DoesNotOverrideItemAfter) |
| 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 TagCollection::~TagCollection() | 40 TagCollection::~TagCollection() |
| 41 { | 41 { |
| 42 #if !ENABLE(OILPAN) |
| 42 if (m_namespaceURI == starAtom) | 43 if (m_namespaceURI == starAtom) |
| 43 ownerNode().nodeLists()->removeCache(this, type(), m_localName); | 44 ownerNode().nodeLists()->removeCache(this, type(), m_localName); |
| 44 else | 45 else |
| 45 ownerNode().nodeLists()->removeCache(this, m_namespaceURI, m_localName); | 46 ownerNode().nodeLists()->removeCache(this, m_namespaceURI, m_localName); |
| 47 #endif |
| 46 } | 48 } |
| 47 | 49 |
| 48 bool TagCollection::elementMatches(const Element& testNode) const | 50 bool TagCollection::elementMatches(const Element& testNode) const |
| 49 { | 51 { |
| 50 // Implements http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#conce
pt-getelementsbytagnamens | 52 // Implements http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#conce
pt-getelementsbytagnamens |
| 51 if (m_localName != starAtom && m_localName != testNode.localName()) | 53 if (m_localName != starAtom && m_localName != testNode.localName()) |
| 52 return false; | 54 return false; |
| 53 | 55 |
| 54 return m_namespaceURI == starAtom || m_namespaceURI == testNode.namespaceURI
(); | 56 return m_namespaceURI == starAtom || m_namespaceURI == testNode.namespaceURI
(); |
| 55 } | 57 } |
| 56 | 58 |
| 57 HTMLTagCollection::HTMLTagCollection(ContainerNode& rootNode, const AtomicString
& localName) | 59 HTMLTagCollection::HTMLTagCollection(ContainerNode& rootNode, const AtomicString
& localName) |
| 58 : TagCollection(rootNode, HTMLTagCollectionType, starAtom, localName) | 60 : TagCollection(rootNode, HTMLTagCollectionType, starAtom, localName) |
| 59 , m_loweredLocalName(localName.lower()) | 61 , m_loweredLocalName(localName.lower()) |
| 60 { | 62 { |
| 61 } | 63 } |
| 62 | 64 |
| 63 } // namespace WebCore | 65 } // namespace WebCore |
| OLD | NEW |