| Index: chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html
|
| diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html b/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html
|
| index 8092277f5a76c512a209acbef5783d218328525e..f01e91da8d86b11ee7b4f35d6fc4250fde0ed845 100644
|
| --- a/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html
|
| +++ b/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html
|
| @@ -1,7 +1,6 @@
|
| <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared_menu.html">
|
| <link rel="import" href="chrome://resources/html/action_link.html">
|
| <link rel="import" href="chrome://resources/html/polymer.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
|
| <link rel="import" href="/passwords_and_forms_page/address_edit_dialog.html">
|
| <link rel="import" href="/passwords_and_forms_page/credit_card_edit_dialog.html">
|
| @@ -41,9 +40,8 @@
|
| </style>
|
| <div class="heading">$i18n{addresses}</div>
|
| <div class="item-list">
|
| - <iron-list id="addressList" items="[[addresses]]"
|
| - class="vertical-list list-section">
|
| - <template>
|
| + <div id="addressList" class="vertical-list list-section">
|
| + <template is="dom-repeat" items="[[addresses]]">
|
| <div class="list-item two-line">
|
| <div class="start">
|
| <span id="addressSummary">[[address_(item)]]</span>
|
| @@ -57,7 +55,7 @@
|
| </paper-icon-button>
|
| </div>
|
| </template>
|
| - </iron-list>
|
| + </div>
|
| <div class="list-item link-item">
|
| <a is="action-link" on-tap="onAddAddressTap_">$i18n{addAddress}</a>
|
| </div>
|
| @@ -79,9 +77,9 @@
|
| <div class="type-column">$i18n{creditCardType}</div>
|
| <div class="expiration-column">$i18n{creditCardExpiration}</div>
|
| </div>
|
| - <iron-list id="creditCardList" items="[[creditCards]]"
|
| + <div id="creditCardList"
|
| class="vertical-list list-section list-with-header">
|
| - <template>
|
| + <template is="dom-repeat" items="[[creditCards]]">
|
| <div class="list-item two-line">
|
| <div class="type-column">
|
| <span id="creditCardLabel">[[item.metadata.summaryLabel]]</span>
|
| @@ -104,7 +102,7 @@
|
| </div>
|
| </div>
|
| </template>
|
| - </iron-list>
|
| + </div>
|
| <div class="list-item link-item">
|
| <a is="action-link" on-tap="onAddCreditCardTap_">
|
| $i18n{addCreditCard}
|
|
|