| Index: third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js b/third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js
|
| index b5719fc399fbe26bf579420ef7018f4120cab769..d16e83815409e42e1e1e2eb21e6a4716bf07f978 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/DebuggerPresentationUtils.js
|
| @@ -25,8 +25,9 @@ WebInspector.DebuggerPresentationUtils.callFrameAnchorFromStackTrace = function(
|
| return stackTrace[0];
|
| for (var i = 0; i < stackTrace.length; ++i) {
|
| var script = debuggerModel && debuggerModel.scriptForId(stackTrace[i].scriptId);
|
| - var blackboxed = script ?
|
| - WebInspector.BlackboxSupport.isBlackboxed(script.sourceURL, script.isContentScript()) :
|
| + var location = script && debuggerModel.createRawLocation(script, stackTrace[i].lineNumber, stackTrace[i].columnNumber);
|
| + var blackboxed = location ?
|
| + WebInspector.BlackboxSupport.isBlackboxedScriptLocation(location) :
|
| WebInspector.BlackboxSupport.isBlackboxedURL(stackTrace[i].url);
|
| if (!blackboxed)
|
| return stackTrace[i];
|
|
|