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

Unified Diff: Tools/GardeningServer/scripts/ui/failures.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/ui.js ('k') | Tools/GardeningServer/scripts/ui_unittests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/ui/failures.js
diff --git a/Tools/GardeningServer/scripts/ui/failures.js b/Tools/GardeningServer/scripts/ui/failures.js
index fbdb5a64274c8c504eeac1daf5f25fb98b0383e3..edd87d72bfd7ba46ea7b42348221dbf48f17c9ae 100644
--- a/Tools/GardeningServer/scripts/ui/failures.js
+++ b/Tools/GardeningServer/scripts/ui/failures.js
@@ -133,24 +133,4 @@ ui.failures.FailureGrid = base.extends('table', {
}
});
-ui.failures.ListItem = base.extends('li', {
- init: function(groupName, failingTestsList)
- {
- this._failingTestsList = failingTestsList;
- this.appendChild(new ui.actions.List([
- new ui.actions.Examine().makeDefault(),
- ]));
- var label = this.appendChild(document.createElement('label'))
- label.textContent = failingTestsList.length == 1 ? failingTestsList[0] : groupName;
- },
-});
-
-ui.failures.List = base.extends('ul', {
- init: function()
- {
- this.className = 'failures';
- this.textContent = 'Loading...';
- }
-});
-
})();
« no previous file with comments | « Tools/GardeningServer/scripts/ui.js ('k') | Tools/GardeningServer/scripts/ui_unittests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698