Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: third_party/WebKit/Source/core/dom/TagCollection.cpp

Issue 2390543002: Reflow comments in core/dom/. (Closed)
Patch Set: Reformat comments in core/dom/. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/StyleSheetCollection.cpp ('k') | third_party/WebKit/Source/core/dom/Text.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698