| Index: third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| index b4a228f29172a5e724554fe122b377678ff0e67a..5fd1f8cd1c9978df97283a6fb6d51c43b84dbd26 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| @@ -300,8 +300,7 @@ WebInspector.Linkifier.prototype = {
|
| return;
|
|
|
| event.consume(true);
|
| - var networkURL = WebInspector.networkMapping.networkURL(uiLocation.uiSourceCode);
|
| - if (WebInspector.Linkifier.handleLink(networkURL, uiLocation.lineNumber))
|
| + if (WebInspector.Linkifier.handleLink(uiLocation.uiSourceCode.url(), uiLocation.lineNumber))
|
| return;
|
| WebInspector.Revealer.reveal(uiLocation);
|
| }
|
|
|