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

Unified Diff: Tools/GardeningServer/ui/ct-test-list.html

Issue 349783003: Polymer-based Garden-O-Matic should have a basic results panel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix closing tag 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
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>

Powered by Google App Engine
This is Rietveld 408576698