| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2014 The Chromium Authors. All rights reserved. | 2 Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <script src="../bower_components/sugar/release/sugar-full.development.js"></scri
pt> | 7 <script src="../bower_components/sugar/release/sugar-full.development.js"></scri
pt> |
| 8 <script src="../scripts/base.js"></script> | 8 <script src="../scripts/base.js"></script> |
| 9 <script src="../scripts/builders.js"></script> |
| 9 <script src="../scripts/config.js"></script> | 10 <script src="../scripts/config.js"></script> |
| 11 <script src="../scripts/model.js"></script> |
| 10 <script src="../scripts/net.js"></script> | 12 <script src="../scripts/net.js"></script> |
| 13 <script src="../scripts/results.js"></script> |
| 11 <script src="../scripts/rollbot.js"></script> | 14 <script src="../scripts/rollbot.js"></script> |
| 12 <script src="../scripts/svn-log.js"></script> | 15 <script src="../scripts/svn-log.js"></script> |
| 13 <script src="../scripts/treestatus.js"></script> | 16 <script src="../scripts/treestatus.js"></script> |
| 14 <script src="../scripts/builders.js"></script> | |
| 15 <script src="../scripts/results.js"></script> | |
| 16 <script src="../scripts/ui.js"></script> | 17 <script src="../scripts/ui.js"></script> |
| 17 <script src="../scripts/model.js"></script> | |
| 18 | 18 |
| 19 <link rel="import" href="../bower_components/core-animated-pages/core-animated-p
ages.html"> | 19 <link rel="import" href="../bower_components/core-animated-pages/core-animated-p
ages.html"> |
| 20 <link rel="import" href="../bower_components/core-animated-pages/transitions/sli
de-from-right.html"> | 20 <link rel="import" href="../bower_components/core-animated-pages/transitions/sli
de-from-right.html"> |
| 21 <link rel="import" href="../bower_components/paper-tabs/paper-tab.html"> | 21 <link rel="import" href="../bower_components/paper-tabs/paper-tab.html"> |
| 22 <link rel="import" href="../bower_components/paper-tabs/paper-tabs.html"> | 22 <link rel="import" href="../bower_components/paper-tabs/paper-tabs.html"> |
| 23 <link rel="import" href="ct-results-panel.html"> |
| 23 <link rel="import" href="ct-unexpected-failures.html"> | 24 <link rel="import" href="ct-unexpected-failures.html"> |
| 24 <link rel="import" href="ct-results-panel.html"> | |
| 25 | 25 |
| 26 <polymer-element name="ct-sheriff-o-matic"> | 26 <polymer-element name="ct-sheriff-o-matic"> |
| 27 <template> | 27 <template> |
| 28 <style> | 28 <style> |
| 29 paper-tabs { | 29 paper-tabs { |
| 30 background-color: #00bcd4; | 30 background-color: #00bcd4; |
| 31 color: #fff; | 31 color: #fff; |
| 32 box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); | 32 box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); |
| 33 } | 33 } |
| 34 </style> | 34 </style> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 46 selected: 0, | 46 selected: 0, |
| 47 currentFailures: [], | 47 currentFailures: [], |
| 48 | 48 |
| 49 onExamine: function(event) { | 49 onExamine: function(event) { |
| 50 this.currentFailures = event.detail; | 50 this.currentFailures = event.detail; |
| 51 this.selected = 1; | 51 this.selected = 1; |
| 52 }, | 52 }, |
| 53 }); | 53 }); |
| 54 </script> | 54 </script> |
| 55 </polymer-element> | 55 </polymer-element> |
| OLD | NEW |