| 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 23 matching lines...) Expand all Loading... |
| 34 const AtomicString& localName) | 34 const AtomicString& localName) |
| 35 : HTMLCollection(rootNode, type, DoesNotOverrideItemAfter), | 35 : HTMLCollection(rootNode, type, DoesNotOverrideItemAfter), |
| 36 m_namespaceURI(namespaceURI), | 36 m_namespaceURI(namespaceURI), |
| 37 m_localName(localName) { | 37 m_localName(localName) { |
| 38 DCHECK(m_namespaceURI.isNull() || !m_namespaceURI.isEmpty()); | 38 DCHECK(m_namespaceURI.isNull() || !m_namespaceURI.isEmpty()); |
| 39 } | 39 } |
| 40 | 40 |
| 41 TagCollection::~TagCollection() {} | 41 TagCollection::~TagCollection() {} |
| 42 | 42 |
| 43 bool TagCollection::elementMatches(const Element& testNode) const { | 43 bool TagCollection::elementMatches(const Element& testNode) const { |
| 44 // Implements http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept
-getelementsbytagnamens | 44 // Implements |
| 45 // http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-getelement
sbytagnamens |
| 45 if (m_localName != starAtom && m_localName != testNode.localName()) | 46 if (m_localName != starAtom && m_localName != testNode.localName()) |
| 46 return false; | 47 return false; |
| 47 | 48 |
| 48 return m_namespaceURI == starAtom || | 49 return m_namespaceURI == starAtom || |
| 49 m_namespaceURI == testNode.namespaceURI(); | 50 m_namespaceURI == testNode.namespaceURI(); |
| 50 } | 51 } |
| 51 | 52 |
| 52 } // namespace blink | 53 } // namespace blink |
| OLD | NEW |