Chromium Code Reviews| 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 3ff112863495eb0b711aff902a0662b0fe17a3a6..6740237a44de93698c0821b2984bafa6136c0fbd 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js |
| @@ -313,7 +313,7 @@ WebInspector.TimelineUIUtils.interactionPhaseLabel = function(phase) |
| */ |
| WebInspector.TimelineUIUtils.isUserFrame = function(frame) |
| { |
| - return frame.scriptId !== "0" && !frame.url.startsWith("native "); |
| + return frame.scriptId !== "0" && frame.url && !frame.url.startsWith("native "); |
|
caseq
2016/06/15 10:28:09
Also, why this check? Does it work well with eval(
|
| } |
| /** |