Chromium Code Reviews| Index: Tools/GardeningServer/ui/ct-unexpected-failures.html |
| diff --git a/Tools/GardeningServer/ui/ct-unexpected-failures.html b/Tools/GardeningServer/ui/ct-unexpected-failures.html |
| index 38dc064e80560cbb1689386af53bd0166bd79776..d227f9bfbad8f073d43afeff81e1571bea44d68e 100644 |
| --- a/Tools/GardeningServer/ui/ct-unexpected-failures.html |
| +++ b/Tools/GardeningServer/ui/ct-unexpected-failures.html |
| @@ -6,10 +6,10 @@ found in the LICENSE file. |
| <link rel="import" href="../bower_components/paper-button/paper-button.html"> |
| <link rel="import" href="../model/tree-status.html"> |
| +<link rel="import" href="ct-builder-alerts.html"> |
| <link rel="import" href="ct-failure-stream.html"> |
| <link rel="import" href="ct-last-updated.html"> |
| <link rel="import" href="ct-party-time.html"> |
| -<link rel="import" href="ct-revision-details.html"> |
| <link rel="import" href="ct-tree-status.html"> |
| <polymer-element name="ct-unexpected-failures" attributes="tree commitLog failures"> |
| @@ -36,11 +36,13 @@ found in the LICENSE file. |
| } |
| .failure-group-header { |
| + background-color: papayawhip; |
|
ojan
2014/09/10 00:40:03
<3 papayawhip
|
| + border: 1px solid black; |
| padding: 0 5px; |
| + display: block; |
| } |
| </style> |
| <div class="toolbar"> |
| - <ct-revision-details id="revisionDetails" builderLatestRevisions="{{ failures.builderLatestRevisions }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-revision-details> |
| <a href="https://code.google.com/p/chromium/wiki/UsefulURLs">Useful URLs</a> |
| </div> |
| <ct-tree-status status="{{ treeStatuses['chromium'] }}" state="{{ treeStatuses['chromium'].status }}"></ct-tree-status> |
| @@ -48,6 +50,7 @@ found in the LICENSE file. |
| <template if="{{ failures && failures.failures && (!failures.failures[tree] || !failures.failures[tree].length) }}"> |
| <ct-party-time></ct-party-time> |
| </template> |
| + <ct-failure-stream title="Probably-hung bots" category="builders" groups="{{ failures.failures[tree] }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream> |
| <ct-failure-stream title="Reliable failures" category="default" groups="{{ failures && failures.failures[tree] }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream> |
| <ct-failure-stream title="Failures that have only happened once (on one bot)" category="failedOnce" groups="{{ failures && failures.failures[tree] }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream> |
| <ct-failure-stream title="Snoozed failures" category="snoozed" groups="{{ failures && failures.failures[tree] }}" commitLog="{{ commitLog }}" tree="{{ tree }}"></ct-failure-stream> |