| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| index 6f27b1420afd7d3dad0716bd9fccf30ff6549db8..682ad54a00e4144152f89b2ee9bacf1b316be689 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -910,7 +910,7 @@ WebInspector.SourcesPanel.prototype = {
|
|
|
| if (contentType.hasScripts() && projectType !== WebInspector.projectTypes.Snippets) {
|
| var networkURL = this._networkMapping.networkURL(uiSourceCode);
|
| - var url = projectType === WebInspector.projectTypes.Formatter ? uiSourceCode.originURL() : networkURL;
|
| + var url = projectType === WebInspector.projectTypes.Formatter ? uiSourceCode.url() : networkURL;
|
| this.sidebarPanes.callstack.appendBlackboxURLContextMenuItems(contextMenu, url, projectType === WebInspector.projectTypes.ContentScripts);
|
| }
|
| },
|
|
|