| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
|
| index 3e8c48459315aeac5e765d59755ca51643fb8c3e..a4f5f19d0454e64e35abc9de53e8c438c29554fc 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js
|
| @@ -995,7 +995,9 @@ WebInspector.NetworkLogView.prototype = {
|
| var re = this._searchRegex;
|
| if (!re)
|
| return false;
|
| - return re.test(request.name()) || (this._networkLogLargeRowsSetting.get() && re.test(request.path()));
|
| +
|
| + var text = this._networkLogLargeRowsSetting.get() ? request.path() + "/" + request.name() : request.name();
|
| + return re.test(text);
|
| },
|
|
|
| _clearSearchMatchedList: function()
|
| @@ -1477,7 +1479,8 @@ WebInspector.NetworkLogView._requestNameOrPathFilter = function(regex, request)
|
| {
|
| if (!regex)
|
| return false;
|
| - return regex.test(request.name()) || regex.test(request.path());
|
| +
|
| + return regex.test(request.path() + "/" + request.name());
|
| }
|
|
|
| /**
|
|
|