Index: third_party/WebKit/Source/core/xml/XPathStep.cpp |
diff --git a/third_party/WebKit/Source/core/xml/XPathStep.cpp b/third_party/WebKit/Source/core/xml/XPathStep.cpp |
index 79429360bc86da8f6a68932d60e321e4d7cbadfc..68a1d1d9d5e73557628d4072138c4717e1c4790e 100644 |
--- a/third_party/WebKit/Source/core/xml/XPathStep.cpp |
+++ b/third_party/WebKit/Source/core/xml/XPathStep.cpp |
@@ -217,7 +217,7 @@ static inline bool NodeMatchesBasicTest(Node* node, |
// Paths without namespaces should match HTML elements in HTML |
// documents despite those having an XHTML namespace. Names are |
// compared case-insensitively. |
- return EqualIgnoringCase(element.localName(), name) && |
+ return DeprecatedEqualIgnoringCase(element.localName(), name) && |
(namespace_uri.IsNull() || |
namespace_uri == element.namespaceURI()); |
} |