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

Unified Diff: Tools/GardeningServer/ui/ct-failing-builders.html

Issue 416673003: Show non-webkit test failures in the failure stream (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address review comments 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
Index: Tools/GardeningServer/ui/ct-failing-builders.html
diff --git a/Tools/GardeningServer/ui/ct-failing-builders.html b/Tools/GardeningServer/ui/ct-failing-builders.html
deleted file mode 100644
index 14cb91747306047b9e32bc46bac258ffd810f0ad..0000000000000000000000000000000000000000
--- a/Tools/GardeningServer/ui/ct-failing-builders.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!--
-Copyright 2014 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.
--->
-
-<link rel="import" href="ct-builder.html">
-
-<!-- Lists builders that are failing and the problematic steps. -->
-<polymer-element name="ct-failing-builders" attributes="builders">
- <template>
- <style>
- :host {
- display: block;
- font-size: 0;
- }
-
- ct-builder {
- display: inline-block;
- margin: 0 5px 2px 0;
- }
- </style>
- <template repeat="{{ builder in builders|keys }}">
- <ct-builder builder="{{ builder }}" steps="{{ builders[builder] }}"></ct-builder>
- </template>
- </template>
- <script>
- Polymer({
- builders: {},
-
- keys: function(obj) {
- return Object.keys(obj);
- },
- });
- </script>
-</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698