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