| 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;
|
|
|