| Index: Source/devtools/front_end/profiler/CanvasProfileView.js
|
| diff --git a/Source/devtools/front_end/profiler/CanvasProfileView.js b/Source/devtools/front_end/profiler/CanvasProfileView.js
|
| index 048c4a3015321f253005f9691908682eb674c93e..2e770169e0a2c7de1650e52af965d0c7ff1e0765 100644
|
| --- a/Source/devtools/front_end/profiler/CanvasProfileView.js
|
| +++ b/Source/devtools/front_end/profiler/CanvasProfileView.js
|
| @@ -486,7 +486,7 @@ WebInspector.CanvasProfileView.prototype = {
|
| // FIXME(62725): stack trace line/column numbers are one-based.
|
| var lineNumber = Math.max(0, call.lineNumber - 1) || 0;
|
| var columnNumber = Math.max(0, call.columnNumber - 1) || 0;
|
| - data[2] = this._linkifier.linkifyLocation(this.profile.target(), call.sourceURL, lineNumber, columnNumber);
|
| + data[2] = this._linkifier.linkifyScriptLocation(this.profile.target(), null, call.sourceURL, lineNumber, columnNumber);
|
| }
|
|
|
| callViewElement.createChild("span", "canvas-function-name").textContent = call.functionName || "context." + call.property;
|
|
|