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/net.js"></script> | |
9 <script src="../scripts/results.js"></script> | 8 <script src="../scripts/results.js"></script> |
10 | 9 |
11 <link rel="import" href="../bower_components/core-animated-pages/core-animated-p ages.html"> | 10 <link rel="import" href="../bower_components/core-animated-pages/core-animated-p ages.html"> |
12 <link rel="import" href="../bower_components/core-animated-pages/transitions/sli de-from-right.html"> | 11 <link rel="import" href="../bower_components/core-animated-pages/transitions/sli de-from-right.html"> |
12 <link rel="import" href="../lib/net.html"> | |
ojan
2014/08/12 22:56:56
As we discussed in person, now that we can import
| |
13 <link rel="import" href="ct-results-panel.html"> | 13 <link rel="import" href="ct-results-panel.html"> |
14 <link rel="import" href="ct-unexpected-failures.html"> | 14 <link rel="import" href="ct-unexpected-failures.html"> |
15 | 15 |
16 <polymer-element name="ct-sheriff-o-matic"> | 16 <polymer-element name="ct-sheriff-o-matic"> |
17 <template> | 17 <template> |
18 <style> | 18 <style> |
19 :host { | 19 :host { |
20 display: flex; | 20 display: flex; |
21 flex-direction: column; | 21 flex-direction: column; |
22 height: 100%; | 22 height: 100%; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
84 this.selected = 0; | 84 this.selected = 0; |
85 }, | 85 }, |
86 | 86 |
87 onExamine: function(event) { | 87 onExamine: function(event) { |
88 this.currentFailures = event.detail.failures; | 88 this.currentFailures = event.detail.failures; |
89 this.selected = 1; | 89 this.selected = 1; |
90 }, | 90 }, |
91 }); | 91 }); |
92 </script> | 92 </script> |
93 </polymer-element> | 93 </polymer-element> |
OLD | NEW |