Index: tracing/tracing/model/stack_frame.html |
diff --git a/tracing/tracing/model/stack_frame.html b/tracing/tracing/model/stack_frame.html |
index b10d3f01a35d1c188aab981c22ce4bb1f1860c43..af676b5ee47d5e5135edab5bec694d31d6ebdca3 100644 |
--- a/tracing/tracing/model/stack_frame.html |
+++ b/tracing/tracing/model/stack_frame.html |
@@ -31,8 +31,10 @@ tr.exportTo('tr.model', function() { |
}, |
get title() { |
- if (this.sourceInfo_) |
- return this.title_ + ' ' + this.sourceInfo_.toString(); |
+ if (this.sourceInfo_) { |
+ var src = this.sourceInfo_.toString(); |
+ return this.title_ + (src === '' ? '' : ' ' + src); |
+ } |
return this.title_; |
}, |