| Index: tools/buildbot/perf/dashboard/ui/generic_plotter.html
|
| ===================================================================
|
| --- tools/buildbot/perf/dashboard/ui/generic_plotter.html (revision 12364)
|
| +++ tools/buildbot/perf/dashboard/ui/generic_plotter.html (working copy)
|
| @@ -1,7 +1,7 @@
|
| <html>
|
|
|
| <!--
|
| - Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
| + Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
|
| Use of this source code is governed by a BSD-style license that can be
|
| found in the LICENSE file.
|
| -->
|
| @@ -98,6 +98,7 @@
|
| var did_position_details = false;
|
| var units = 'thing-a-ma-bobs';
|
| var graph_list = [];
|
| +var first_trace = '';
|
|
|
| var params = ParseParams();
|
| if (!('history' in params)) {
|
| @@ -158,7 +159,7 @@
|
| setAttribute('src', Config.changeLinkPrefix + prev_cl + ':' + cl);
|
|
|
| document.getElementById('view-pages').
|
| - setAttribute('src', 'details.html?cl=' + cl);
|
| + setAttribute('src', 'details.html?cl=' + cl + '&trace=' + first_trace);
|
|
|
| if (!did_position_details) {
|
| position_details();
|
| @@ -198,6 +199,8 @@
|
| for (var traceName in allTraces)
|
| traceNames.push(traceName);
|
|
|
| + first_trace = traceNames[0];
|
| +
|
| // Build and numerically sort a list of revision numbers.
|
| var revisionNumbers = [];
|
| for (var rev in graphData)
|
|
|