| Index: third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp
|
| index b4e35833255370a47369f1f32a9c9ca3eff9c8e9..fb59d8495de1c94357de8be0a0d280fec031be63 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.cpp
|
| @@ -1011,7 +1011,7 @@ Response InspectorDOMAgent::performSearch(
|
| (node->nodeName().FindIgnoringCase(tag_name_query) !=
|
| kNotFound)) ||
|
| (start_tag_found && end_tag_found &&
|
| - EqualIgnoringCase(node->nodeName(), tag_name_query)) ||
|
| + DeprecatedEqualIgnoringCase(node->nodeName(), tag_name_query)) ||
|
| (start_tag_found && !end_tag_found &&
|
| node->nodeName().StartsWith(tag_name_query,
|
| kTextCaseUnicodeInsensitive)) ||
|
|
|