Index: Source/devtools/front_end/timeline/TimelineTracingView.js |
diff --git a/Source/devtools/front_end/timeline/TimelineTracingView.js b/Source/devtools/front_end/timeline/TimelineTracingView.js |
index f36ba2e5ad58ffd4664e331a198625709643c4ce..681ef95e0517e66de8413b5006561501d4a91bff 100644 |
--- a/Source/devtools/front_end/timeline/TimelineTracingView.js |
+++ b/Source/devtools/front_end/timeline/TimelineTracingView.js |
@@ -316,7 +316,7 @@ WebInspector.TraceViewFlameChartDataProvider.prototype = { |
this._currentLevel = 0; |
this._headerTitles = {}; |
this._minimumBoundary = this._timelineModelForMinimumBoundary.minimumRecordTime(); |
- this._timeSpan = Math.max((this._model.maximumRecordTime() || 0) - this._minimumBoundary, 1000); |
+ this._timeSpan = Math.max(this._model.maximumRecordTime() - this._minimumBoundary, 1000); |
var processes = this._model.sortedProcesses(); |
for (var processIndex = 0; processIndex < processes.length; ++processIndex) { |
var process = processes[processIndex]; |