| 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/config.js"></script> | |
| 9 <script src="../scripts/net.js"></script> | 8 <script src="../scripts/net.js"></script> |
| 10 <script src="../scripts/results.js"></script> | 9 <script src="../scripts/results.js"></script> |
| 11 <script src="../scripts/treestatus.js"></script> | 10 <script src="../scripts/treestatus.js"></script> |
| 12 <script src="../scripts/ui.js"></script> | 11 <script src="../scripts/ui.js"></script> |
| 13 | 12 |
| 14 <link rel="import" href="../bower_components/core-animated-pages/core-animated-p
ages.html"> | 13 <link rel="import" href="../bower_components/core-animated-pages/core-animated-p
ages.html"> |
| 15 <link rel="import" href="../bower_components/core-animated-pages/transitions/sli
de-from-right.html"> | 14 <link rel="import" href="../bower_components/core-animated-pages/transitions/sli
de-from-right.html"> |
| 16 <link rel="import" href="ct-results-panel.html"> | 15 <link rel="import" href="ct-results-panel.html"> |
| 17 <link rel="import" href="ct-unexpected-failures.html"> | 16 <link rel="import" href="ct-unexpected-failures.html"> |
| 18 | 17 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 this.selected = 0; | 68 this.selected = 0; |
| 70 }, | 69 }, |
| 71 | 70 |
| 72 onExamine: function(event) { | 71 onExamine: function(event) { |
| 73 this.currentFailures = event.detail; | 72 this.currentFailures = event.detail; |
| 74 this.selected = 1; | 73 this.selected = 1; |
| 75 }, | 74 }, |
| 76 }); | 75 }); |
| 77 </script> | 76 </script> |
| 78 </polymer-element> | 77 </polymer-element> |
| OLD | NEW |