Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.html

Issue 2959023003: MD-Settings: Create tests for edit options in Credit Cards. (Closed)
Patch Set: semicolon Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/test/data/webui/settings/settings_autofill_section_browsertest.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 2
3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html"> 3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
4 <link rel="import" href="chrome://resources/html/action_link.html"> 4 <link rel="import" href="chrome://resources/html/action_link.html">
5 <link rel="import" href="chrome://resources/html/action_link_css.html"> 5 <link rel="import" href="chrome://resources/html/action_link_css.html">
6 <link rel="import" href="chrome://resources/html/assert.html"> 6 <link rel="import" href="chrome://resources/html/assert.html">
7 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 7 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
10 <link rel="import" href="../i18n_setup.html"> 10 <link rel="import" href="../i18n_setup.html">
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 <div class="expiration-column"> 161 <div class="expiration-column">
162 <div id="creditCardExpiration" 162 <div id="creditCardExpiration"
163 class="expiration-date">[[expiration_(item)]]</div> 163 class="expiration-date">[[expiration_(item)]]</div>
164 <template is="dom-if" if="[[showDots_(item.metadata)]]"> 164 <template is="dom-if" if="[[showDots_(item.metadata)]]">
165 <button is="paper-icon-button-light" id="creditCardMenu" 165 <button is="paper-icon-button-light" id="creditCardMenu"
166 class="icon-more-vert" title="$i18n{moreActions}" 166 class="icon-more-vert" title="$i18n{moreActions}"
167 on-tap="onCreditCardMenuTap_"> 167 on-tap="onCreditCardMenuTap_">
168 </button> 168 </button>
169 </template> 169 </template>
170 <template is="dom-if" if="[[!showDots_(item.metadata)]]"> 170 <template is="dom-if" if="[[!showDots_(item.metadata)]]">
171 <button is="paper-icon-button-light" class="icon-external" 171 <button is="paper-icon-button-light" id="remoteCreditCardLink"
172 class="icon-external"
172 on-tap="onRemoteEditCreditCardTap_" actionable></button> 173 on-tap="onRemoteEditCreditCardTap_" actionable></button>
173 </template> 174 </template>
174 </div> 175 </div>
175 </div> 176 </div>
176 </template> 177 </template>
177 </div> 178 </div>
178 <div id="noCreditCardsLabel" class="list-item" 179 <div id="noCreditCardsLabel" class="list-item"
179 hidden$="[[hasSome_(creditCards)]]"> 180 hidden$="[[hasSome_(creditCards)]]">
180 $i18n{noCreditCardsFound} 181 $i18n{noCreditCardsFound}
181 </div> 182 </div>
(...skipping 11 matching lines...) Expand all
193 </button> 194 </button>
194 </dialog> 195 </dialog>
195 <template is="dom-if" if="[[showCreditCardDialog_]]" restamp> 196 <template is="dom-if" if="[[showCreditCardDialog_]]" restamp>
196 <settings-credit-card-edit-dialog credit-card="[[activeCreditCard]]" 197 <settings-credit-card-edit-dialog credit-card="[[activeCreditCard]]"
197 on-close="onCreditCardDialogClosed_"> 198 on-close="onCreditCardDialogClosed_">
198 </settings-credit-card-edit-dialog> 199 </settings-credit-card-edit-dialog>
199 </template> 200 </template>
200 </template> 201 </template>
201 <script src="autofill_section.js"></script> 202 <script src="autofill_section.js"></script>
202 </dom-module> 203 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/test/data/webui/settings/settings_autofill_section_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698