Chromium Code Reviews| 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..20f9ab9922b8f0d8a8a9003cabd5b27b72750a5c |
| --- /dev/null |
| +++ b/Tools/GardeningServer/ui/ct-test-list.html |
| @@ -0,0 +1,27 @@ |
| +<!-- |
| +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-commit-list.html"> |
|
michaelpg
2014/06/29 23:16:05
Do you need this?
abarth-chromium
2014/06/29 23:52:26
Nope! Copy/pasta
|
| + |
| +<polymer-element name="ct-test-list" attributes="tests"> |
| + <template> |
| + <style> |
| + a { |
|
michaelpg
2014/06/29 23:16:05
nit: indent 2 spaces
abarth-chromium
2014/06/29 23:52:26
Done
|
| + display: block; |
| + } |
| + </style> |
| + <template repeat="{{testName in tests}}"> |
| + <a href="{{testName|flakinessDashboardURL}}">{{testName}}</a> |
| + </template> |
| + </template> |
| + <script> |
| + Polymer({ |
| + flakinessDashboardURL: function(testName) { |
| + return ui.urlForFlakinessDashboard([testName]); |
| + }, |
| + }); |
| + </script> |
| +</polymer-element> |