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

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

Issue 728023004: Remove GardeningServer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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-sheriff-o-matic.html ('k') | Tools/GardeningServer/ui/ct-test-list.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-step-failure-card.html
diff --git a/Tools/GardeningServer/ui/ct-step-failure-card.html b/Tools/GardeningServer/ui/ct-step-failure-card.html
deleted file mode 100644
index 0f1d3fc56b03eda72552969fd3ad5b70ae9564f9..0000000000000000000000000000000000000000
--- a/Tools/GardeningServer/ui/ct-step-failure-card.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<!--
-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.
--->
-
-<link rel="import" href="ct-builder-grid.html">
-<link rel="import" href="ct-commit-list.html">
-<link rel="import" href="ct-test-list.html">
-
-<polymer-element name="ct-step-failure-card" attributes="group commitLog">
- <template>
- <style>
- :host {
- display: flex;
- }
-
- :host > * {
- flex: 1;
- }
-
- ct-test-list,
- ct-builder-grid {
- display: block;
- margin-bottom: 10px;
- min-height: 24px;
- }
-
- ct-commit-list {
- margin-left: 25px;
- }
-
- @media (max-width: 800px) {
- :host {
- flex-direction: column;
- }
-
- ct-commit-list {
- margin-left: 0px;
- }
- }
- </style>
- <div>
- <ct-builder-grid builderList="{{ group.builderList }}"></ct-builder-grid>
- <ct-test-list tests="{{ group.failures }}"></ct-test-list>
- </div>
- <ct-commit-list commitList="{{ group.commitList }}"></ct-commit-list>
- </template>
- <script>
- Polymer({
- group: null,
- commitLog: null,
- _builderList: null,
-
- observe: {
- group: '_updateCommitList',
- commitLog: '_updateCommitList',
- },
-
- _updateCommitList: function() {
- if (this.group && this.group.commitList && this.commitLog)
- this.group.commitList.update(this.commitLog);
- },
- });
- </script>
-</polymer-element>
-
-
« no previous file with comments | « Tools/GardeningServer/ui/ct-sheriff-o-matic.html ('k') | Tools/GardeningServer/ui/ct-test-list.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698