| Index: third_party/WebKit/Source/core/dom/QualifiedName.h
|
| diff --git a/third_party/WebKit/Source/core/dom/QualifiedName.h b/third_party/WebKit/Source/core/dom/QualifiedName.h
|
| index 8c6fee54045891b5b072668e9aeeff7ac1c8a32e..4a024b37ec8b74150730f1277d4ea44a8e93336c 100644
|
| --- a/third_party/WebKit/Source/core/dom/QualifiedName.h
|
| +++ b/third_party/WebKit/Source/core/dom/QualifiedName.h
|
| @@ -129,8 +129,9 @@ class CORE_EXPORT QualifiedName {
|
| }
|
|
|
| bool matches(const QualifiedName& other) const {
|
| - return m_impl == other.m_impl || (localName() == other.localName() &&
|
| - namespaceURI() == other.namespaceURI());
|
| + return m_impl == other.m_impl ||
|
| + (localName() == other.localName() &&
|
| + namespaceURI() == other.namespaceURI());
|
| }
|
|
|
| bool matchesPossiblyIgnoringCase(const QualifiedName& other,
|
|
|