| Index: third_party/WebKit/Source/devtools/front_end/sdk/NetworkRequest.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/NetworkRequest.js b/third_party/WebKit/Source/devtools/front_end/sdk/NetworkRequest.js
|
| index 6bdd17b923e6d95e8b1843552af3c56ff0c7e3ca..0b6bebd92a6ae68b2156d47c9bbf750601702d9c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/NetworkRequest.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/NetworkRequest.js
|
| @@ -570,7 +570,8 @@ WebInspector.NetworkRequest.prototype = {
|
| } else {
|
| this._path = this._parsedURL.host + this._parsedURL.folderPathComponents;
|
|
|
| - this._path = this._path.trimURL(this.target().inspectedURL().asParsedURL().host);
|
| + var inspectedURL = this.target().inspectedURL().asParsedURL();
|
| + this._path = this._path.trimURL(inspectedURL ? inspectedURL.host : "");
|
| if (this._parsedURL.lastPathComponent || this._parsedURL.queryParams)
|
| this._name = this._parsedURL.lastPathComponent + (this._parsedURL.queryParams ? "?" + this._parsedURL.queryParams : "");
|
| else if (this._parsedURL.folderPathComponents) {
|
|
|