Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2387)

Unified Diff: Tools/TestResultServer/static-dashboards/history.js

Issue 359533004: Group flakiness results by blink revision (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Cleanup for landing Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/TestResultServer/static-dashboards/flakiness_dashboard_unittests.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/TestResultServer/static-dashboards/history.js
diff --git a/Tools/TestResultServer/static-dashboards/history.js b/Tools/TestResultServer/static-dashboards/history.js
index ec18f7f2744a94ef4052342c3d48a76c453af7c4..023f6417e420f0b27456cd54a2b08b50f73a4dcc 100644
--- a/Tools/TestResultServer/static-dashboards/history.js
+++ b/Tools/TestResultServer/static-dashboards/history.js
@@ -32,7 +32,7 @@ var history = history || {};
(function() {
history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES = {
- group: null,
+ group: '@ToT Blink',
showAllRuns: false,
testType: 'layout-tests',
useTestData: false,
@@ -150,6 +150,11 @@ history.History.prototype = {
window.onhashchange = this._handleLocationChange.bind(this);
this._handleLocationChange();
},
+ isBlinkGroup: function()
+ {
+ var group = this.crossDashboardState.group;
+ return group && group.indexOf('@ToT Blink') >= 0;
+ },
isLayoutTestResults: function()
{
return this.crossDashboardState.testType == 'layout-tests';
« no previous file with comments | « Tools/TestResultServer/static-dashboards/flakiness_dashboard_unittests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698