| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2016 The Chromium Authors. All rights reserved. | 3 Copyright 2016 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <dom-module id="bug-info"> | 8 <dom-module id="bug-info"> |
| 9 <template> | 9 <template> |
| 10 <style> | 10 <style> |
| 11 #container { | 11 #container { |
| 12 display: flex; | 12 display: flex; |
| 13 display: -webkit-flex; | |
| 14 -webkit-flex-direction: column; | |
| 15 flex-direction: column; | 13 flex-direction: column; |
| 16 margin-left: 1px; | 14 margin-left: 1px; |
| 17 margin-top: 3px; | 15 margin-top: 3px; |
| 18 } | 16 } |
| 19 | 17 |
| 20 #container p { | 18 #container p { |
| 21 margin-top: 7px; | 19 margin-top: 7px; |
| 22 margin-bottom: 7px; | 20 margin-bottom: 7px; |
| 23 } | 21 } |
| 24 | 22 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 alerts[i].bot + '/' + | 129 alerts[i].bot + '/' + |
| 132 alerts[i].testsuite + '/' + | 130 alerts[i].testsuite + '/' + |
| 133 alerts[i].test; | 131 alerts[i].test; |
| 134 } | 132 } |
| 135 } | 133 } |
| 136 return null; | 134 return null; |
| 137 } | 135 } |
| 138 }); | 136 }); |
| 139 </script> | 137 </script> |
| 140 </dom-module> | 138 </dom-module> |
| OLD | NEW |