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

Unified Diff: Tools/GardeningServer/scripts/ui.js

Issue 360553005: Remove the Expected Failures tab (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix teh testsw Created 6 years, 6 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/GardeningServer/scripts/model.js ('k') | Tools/GardeningServer/scripts/ui/failures.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/ui.js
diff --git a/Tools/GardeningServer/scripts/ui.js b/Tools/GardeningServer/scripts/ui.js
index de7e29f741d6b7fea44b8d244b2af3ab0dff97f8..f4e0cb6a5afbc29509d4cf0aef5a9114aad8dc21 100644
--- a/Tools/GardeningServer/scripts/ui.js
+++ b/Tools/GardeningServer/scripts/ui.js
@@ -109,22 +109,19 @@ ui.onebar = base.extends('div', {
this.innerHTML =
'<ul>' +
'<li><a href="#unexpected">Unexpected Failures</a></li>' +
- '<li><a href="#expected">Expected Failures</a></li>' +
'<li><a href="#results">Results</a></li>' +
'</ul>' +
'<div id="link-handling"><input type="checkbox" id="new-window-for-links"><label for="new-window-for-links">Open links in new window</label></div>' +
'<div id="unexpected"></div>' +
- '<div id="expected"></div>' +
'<div id="results"></div>';
this._tabNames = [
'unexpected',
- 'expected',
'results',
]
this._tabIndexToSavedScrollOffset = {};
this._tabs = $(this).tabs({
- disabled: [2],
+ disabled: [this._tabNames.indexOf('results')],
show: function(event, ui) { this._restoreScrollOffset(ui.index); },
select: function(event, ui) {
this._saveScrollOffset();
@@ -190,10 +187,6 @@ ui.onebar = base.extends('div', {
{
return this.tabNamed('unexpected');
},
- expected: function()
- {
- return this.tabNamed('expected');
- },
results: function()
{
return this.tabNamed('results');
« no previous file with comments | « Tools/GardeningServer/scripts/model.js ('k') | Tools/GardeningServer/scripts/ui/failures.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698