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

Unified Diff: Tools/GardeningServer/ui/ct-failure-card.html

Issue 418253002: Expose the chromium waterfall in sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: merge to ToT Created 6 years, 5 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
« no previous file with comments | « Tools/GardeningServer/ui/ct-failure-analyzer.html ('k') | Tools/GardeningServer/ui/ct-failure-grouper.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-failure-card.html
diff --git a/Tools/GardeningServer/ui/ct-failure-card.html b/Tools/GardeningServer/ui/ct-failure-card.html
index e01bd8e26f43d7147c90d4312a03f9370882ade2..98af69e4807625a30832d62bb76031a5fae0136e 100644
--- a/Tools/GardeningServer/ui/ct-failure-card.html
+++ b/Tools/GardeningServer/ui/ct-failure-card.html
@@ -8,7 +8,7 @@ found in the LICENSE file.
<link rel="import" href="ct-commit-list.html">
<link rel="import" href="ct-test-list.html">
-<polymer-element name="ct-failure-card" attributes="failures commits">
+<polymer-element name="ct-failure-card" attributes="failures commits tree">
<template>
<style>
:host {
@@ -55,19 +55,20 @@ found in the LICENSE file.
align-self: flex-start;
}
</style>
- <ct-builder-grid failures="{{failures}}"></ct-builder-grid>
+ <ct-builder-grid failures="{{ failures }}"></ct-builder-grid>
<div class="failure">
- <ct-test-list tests="{{failures}}"></ct-test-list>
- <ct-commit-list first="{{failures[0].newestPassingRevision + 1}}"
- last="{{failures[0].oldestFailingRevision}}"
- commits="{{commits}}"></ct-commit-list>
+ <ct-test-list tests="{{ failures }}" tree="{{ tree }}"></ct-test-list>
+ <ct-commit-list first="{{ failures[0].lastPassingRevisions }}"
+ last="{{ failures[0].firstFailingRevisions }}"
+ commits="{{ commits }}"></ct-commit-list>
</div>
- <paper-button id="examine" on-tap="{{examine}}">Examine</paper-button>
+ <paper-button id="examine" on-tap="{{ examine }}">Examine</paper-button>
</template>
<script>
Polymer({
failures: [],
commits: {},
+ tree: '',
examine: function() {
this.fire('ct-examine-failures', this.failures);
« no previous file with comments | « Tools/GardeningServer/ui/ct-failure-analyzer.html ('k') | Tools/GardeningServer/ui/ct-failure-grouper.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698