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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTagCollection.h

Issue 2384273007: reflow comments in core/html/*.{cpp,h},core/html/imports (Closed)
Patch Set: comments 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLTagCollection.h
diff --git a/third_party/WebKit/Source/core/html/HTMLTagCollection.h b/third_party/WebKit/Source/core/html/HTMLTagCollection.h
index 28d28b6f113082379edd8dcf2a5c6ac65c21fe5e..1b9a245618295a780c971c98d1562a14d2f23d51 100644
--- a/third_party/WebKit/Source/core/html/HTMLTagCollection.h
+++ b/third_party/WebKit/Source/core/html/HTMLTagCollection.h
@@ -30,7 +30,8 @@
namespace blink {
-// Collection that limits to a particular tag and whose rootNode is in an HTMLDocument.
+// Collection that limits to a particular tag and whose rootNode is in an
+// HTMLDocument.
class HTMLTagCollection final : public TagCollection {
public:
static HTMLTagCollection* create(ContainerNode& rootNode,
@@ -56,7 +57,8 @@ DEFINE_TYPE_CASTS(HTMLTagCollection,
inline bool HTMLTagCollection::elementMatches(
const Element& testElement) const {
- // Implements http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-getelementsbytagname
+ // Implements
+ // http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-getelementsbytagname
if (m_localName != starAtom) {
const AtomicString& localName =
testElement.isHTMLElement() ? m_loweredLocalName : m_localName;

Powered by Google App Engine
This is Rietveld 408576698