| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| index 7cdc39252c448b7e16b557380db3dcd374154e7e..0b1558f4de40a80d51ce846a1797e7007382a81c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| @@ -469,7 +469,13 @@ WebInspector.TimelineUIUtils.buildDetailsTextForTraceEvent = function(event, tar
|
| function linkifyTopCallFrameAsText()
|
| {
|
| var frame = WebInspector.TimelineUIUtils.topStackFrame(event);
|
| - return frame ? linkifyLocationAsText(frame.scriptId, frame.lineNumber, frame.columnNumber) : null;
|
| + var text = frame ? linkifyLocationAsText(frame.scriptId, frame.lineNumber, frame.columnNumber) : null;
|
| + if (frame && !text) {
|
| + text = frame.url;
|
| + if (typeof frame.lineNumber === "number")
|
| + text += ":" + (frame.lineNumber + 1);
|
| + }
|
| + return text;
|
| }
|
| }
|
|
|
|
|