| OLD | NEW |
| 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <polymer-element name="cr-try-results" attributes="results"> | 5 <polymer-element name="cr-try-results" attributes="results"> |
| 6 <template> | 6 <template> |
| 7 <link rel="stylesheet" href="common.css"> | 7 <link rel="stylesheet" href="../common/common.css"> |
| 8 <style> | 8 <style> |
| 9 :host { | 9 :host { |
| 10 display: block; | 10 display: block; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #builders { | 13 #builders { |
| 14 display: -webkit-flex; | 14 display: -webkit-flex; |
| 15 display: flex; | 15 display: flex; |
| 16 flex-wrap: wrap; | 16 flex-wrap: wrap; |
| 17 -webkit-flex-wrap: wrap; | 17 -webkit-flex-wrap: wrap; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 </div> | 83 </div> |
| 84 </template> | 84 </template> |
| 85 <script> | 85 <script> |
| 86 Polymer("cr-try-results", { | 86 Polymer("cr-try-results", { |
| 87 created: function() { | 87 created: function() { |
| 88 this.results = null; | 88 this.results = null; |
| 89 }, | 89 }, |
| 90 }); | 90 }); |
| 91 </script> | 91 </script> |
| 92 </polymer-element> | 92 </polymer-element> |
| OLD | NEW |