| 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 c6115312af4f4ca4c7688e77ce61d5c66ac7128b..a6d3458d6984267f0841df0385735bcdd1734640 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| @@ -498,7 +498,7 @@ WebInspector.TimelineUIUtils.buildDetailsTextForTraceEvent = function(event, tar
|
| function linkifyLocationAsText(scriptId, lineNumber, columnNumber)
|
| {
|
| var debuggerModel = WebInspector.DebuggerModel.fromTarget(target);
|
| - if (!target || target.isDetached() || !scriptId || !debuggerModel)
|
| + if (!target || target.isDisposed() || !scriptId || !debuggerModel)
|
| return null;
|
| var rawLocation = debuggerModel.createRawLocationByScriptId(scriptId, lineNumber, columnNumber);
|
| if (!rawLocation)
|
|
|