summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/internet_page/network_proxy_exclusions.html
blob: 07b9273001a26012483b6df77109da94ec0d237e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styles.html">

<dom-module id="network-proxy-exclusions">
  <link rel="import" type="css" href="network_proxy_exclusions.css">
  <template>
    <div id="container" class="layout vertical">
      <template is="dom-repeat" items="[[exclusions]]">
        <div class="layout horizontal">
          <span class="flex">[[item]]</span>
          <iron-icon icon="clear" on-click="removeItem_"></iron-icon>
        </div>
      </template>
    </div>
  </template>
  <script src="network_proxy_exclusions.js"></script>
</dom-module>