Index: Tools/GardeningServer/ui/ct-test-list.html |
diff --git a/Tools/GardeningServer/ui/ct-test-list.html b/Tools/GardeningServer/ui/ct-test-list.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..072ba03555e022db241c350028295e1e591ce733 |
--- /dev/null |
+++ b/Tools/GardeningServer/ui/ct-test-list.html |
@@ -0,0 +1,25 @@ |
+<!-- |
+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. |
+--> |
+ |
+<polymer-element name="ct-test-list" attributes="tests"> |
+ <template> |
+ <style> |
+ a { |
+ display: block; |
+ } |
+ </style> |
+ <template repeat="{{testName in tests}}"> |
+ <a href="{{testName|flakinessDashboardURL}}">{{testName}}</a> |
ojan
2014/06/30 04:48:14
Do you really want clicking anywhere on the block
abarth-chromium
2014/06/30 04:55:06
Ok
|
+ </template> |
+ </template> |
+ <script> |
+ Polymer({ |
+ flakinessDashboardURL: function(testName) { |
+ return ui.urlForFlakinessDashboard([testName]); |
+ }, |
+ }); |
+ </script> |
+</polymer-element> |