It's inconvenient to always show outliners. Use a moving average's envelope to compute the y-axis range to show instead.
Created attachment 246348 [details] Fixes the bug
Comment on attachment 246348 [details] Fixes the bug View in context: https://bugs.webkit.org/attachment.cgi?id=246348&action=review r=me with 1 fix. > Websites/perf.webkit.org/public/v2/app.js:493 > + chartData.hideEnveope = true; hideEnveope -> hideEnvelope > Websites/perf.webkit.org/public/v2/interactive-chart.js:358 > + currentRange[0] = Math.min(0, currentRange[0]); So currentRange[0] can be negative?
(In reply to comment #2) > Comment on attachment 246348 [details] > Fixes the bug > > View in context: > https://bugs.webkit.org/attachment.cgi?id=246348&action=review > > r=me with 1 fix. Thanks! > > Websites/perf.webkit.org/public/v2/app.js:493 > > + chartData.hideEnveope = true; > > hideEnveope -> hideEnvelope Fixed. > > Websites/perf.webkit.org/public/v2/interactive-chart.js:358 > > + currentRange[0] = Math.min(0, currentRange[0]); > > So currentRange[0] can be negative? Yes. There's nothing that prevents a perf. test from reporting a negative number.
Committed r179913: <http://trac.webkit.org/changeset/179913>