| 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 d791afddd5b8394588aed9922c5dccd9d704b5c4..d757b8e0fd4cf3d716fff6f1d32739a46622ec56 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| @@ -205,8 +205,9 @@ WebInspector.Linkifier.prototype = {
|
| var anchor = this.linkifyScriptLocation(target, callFrame.scriptId, callFrame.url, lineNumber, columnNumber, classes);
|
| var debuggerModel = WebInspector.DebuggerModel.fromTarget(target);
|
| var script = debuggerModel && debuggerModel.scriptForId(callFrame.scriptId);
|
| - var blackboxed = script ?
|
| - WebInspector.BlackboxSupport.isBlackboxed(script.sourceURL, script.isContentScript()) :
|
| + var location = script && debuggerModel.createRawLocation(script, lineNumber, columnNumber);
|
| + var blackboxed = location ?
|
| + WebInspector.BlackboxSupport.isBlackboxedScriptLocation(location) :
|
| WebInspector.BlackboxSupport.isBlackboxedURL(callFrame.url);
|
| if (blackboxed)
|
| anchor.classList.add("webkit-html-blackbox-link");
|
|
|