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

Unified Diff: Tools/GardeningServer/ui/ct-results-detail.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: Address Michael's comments 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-results-detail.html
diff --git a/Tools/GardeningServer/ui/ct-commit.html b/Tools/GardeningServer/ui/ct-results-detail.html
similarity index 56%
copy from Tools/GardeningServer/ui/ct-commit.html
copy to Tools/GardeningServer/ui/ct-results-detail.html
index 61d00be86d4e424d95128084f822f23c28f32011..5c1d9101e2657a2aa0b94657fd457e30c3cf81e7 100644
--- a/Tools/GardeningServer/ui/ct-commit.html
+++ b/Tools/GardeningServer/ui/ct-results-detail.html
@@ -4,13 +4,20 @@ Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
-<polymer-element name="ct-commit" attributes="data" noscript>
+<link rel="import" href="ct-results-comparison.html">
+
+<polymer-element name="ct-results-detail" attributes="test builder">
abarth-chromium 2014/06/29 23:54:19 No tests for this element yet because this version
<template>
<style>
:host {
display: block;
}
</style>
- {{data.revision}}: {{data.summary}} <em>{{data.author}} ({{data.reviewer}})</em>
+ Test: {{test}}<br>
+ Builder: {{builder}}
</template>
+ <script>
+ Polymer({
+ });
+ </script>
</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698