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

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: Moar flex 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 60%
copy from Tools/GardeningServer/ui/ct-commit.html
copy to Tools/GardeningServer/ui/ct-results-detail.html
index 61d00be86d4e424d95128084f822f23c28f32011..b79de10b9006c55d0957bd54be7e8414b007c644 100644
--- a/Tools/GardeningServer/ui/ct-commit.html
+++ b/Tools/GardeningServer/ui/ct-results-detail.html
@@ -4,13 +4,16 @@ 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" noscript>
<template>
<style>
:host {
display: block;
}
</style>
- {{data.revision}}: {{data.summary}} <em>{{data.author}} ({{data.reviewer}})</em>
+ Test: {{test}}<br>
esprehn 2014/07/01 19:47:45 Ick, can we use a <div> instead of a <br>?
+ Builder: {{builder}}
</template>
</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698