| 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 da603a41043c76f88d86a31c07ae247964f4376e..6bb5bbd68e8f8b1d1c6bcd0fd591852e12933089 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| @@ -606,7 +606,7 @@ Timeline.TimelineUIUtils = class {
|
| if (!rawLocation)
|
| return null;
|
| var uiLocation = Bindings.debuggerWorkspaceBinding.rawLocationToUILocation(rawLocation);
|
| - return uiLocation.linkText();
|
| + return uiLocation ? uiLocation.linkText() : null;
|
| }
|
|
|
| /**
|
|
|