| OLD | NEW |
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styl
es.html"> |
| 4 |
| 5 <dom-module id="network-proxy-exclusions"> |
| 6 <link rel="import" type="css" href="network_proxy_exclusions.css"> |
| 7 <template> |
| 8 <div id="container" class="layout vertical"> |
| 9 <template is="dom-repeat" items="[[exclusions]]"> |
| 10 <div class="layout horizontal"> |
| 11 <span class="flex">[[item]]</span> |
| 12 <iron-icon icon="clear" on-click="removeItem_"></iron-icon> |
| 13 </div> |
| 14 </template> |
| 15 </div> |
| 16 </template> |
| 17 <script src="network_proxy_exclusions.js"></script> |
| 18 </dom-module> |
| OLD | NEW |