| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/hidden_style_css.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/hidden_style_css.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 5 <link rel="import" href="internet_shared_css.html"> | 6 <link rel="import" href="internet_shared_css.html"> |
| 6 | 7 |
| 7 <dom-module id="network-proxy-exclusions"> | 8 <dom-module id="network-proxy-exclusions"> |
| 8 <template> | 9 <template> |
| 9 <style include="internet-shared cr-hidden-style iron-flex"> | 10 <style include="internet-shared cr-hidden-style iron-flex"> |
| 10 iron-icon { | 11 iron-icon { |
| 11 @apply(--settings-actionable); | 12 @apply(--settings-actionable); |
| 12 margin: 5px; | 13 margin: 5px; |
| 13 } | 14 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 27 <div class="flex">[[item]]</div> | 28 <div class="flex">[[item]]</div> |
| 28 <iron-icon class="favicon-image" icon="cr:clear" | 29 <iron-icon class="favicon-image" icon="cr:clear" |
| 29 on-tap="onRemoveTap_" tabindex="0" hidden="[[!editable]]"> | 30 on-tap="onRemoveTap_" tabindex="0" hidden="[[!editable]]"> |
| 30 </iron-icon> | 31 </iron-icon> |
| 31 </div> | 32 </div> |
| 32 </template> | 33 </template> |
| 33 </div> | 34 </div> |
| 34 </template> | 35 </template> |
| 35 <script src="network_proxy_exclusions.js"></script> | 36 <script src="network_proxy_exclusions.js"></script> |
| 36 </dom-module> | 37 </dom-module> |
| OLD | NEW |