| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
|
| index 09f65a37ac6b7df51a20302a6bb1687299acff31..cf48a0a515ff15a1c3dc7a5667b0db89ac9685e3 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
|
| @@ -681,13 +681,8 @@ Network.NetworkRequestNode = class extends Network.NetworkNode {
|
| * @return {boolean}
|
| */
|
| isNavigationRequest() {
|
| - return this._isNavigationRequest;
|
| - }
|
| -
|
| - markAsNavigationRequest() {
|
| - this._isNavigationRequest = true;
|
| - this.refresh();
|
| - this._updateBackgroundColor();
|
| + var pageLoad = NetworkLog.networkLog.pageLoadForRequest(this._request);
|
| + return pageLoad ? pageLoad.mainRequest === this._request : false;
|
| }
|
|
|
| /**
|
|
|