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

Side by Side Diff: chrome/browser/resources/options/autofill_edit_creditcard_overlay.html

Issue 6575012: More autofill overlay HTML cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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 | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="autoFillEditCreditCardOverlay"> 1 <div class="page hidden" id="autofill-edit-credit-card-overlay">
2 <h1 id="autoFillCreditCardTitle"></h1> 2 <h1 id="autofill-credit-card-title"></h1>
3 <div class="content-area"> 3 <div class="content-area">
4 <div> 4 <div>
5 <label id="nameOnCardLabel"> 5 <label>
6 <span i18n-content="nameOnCardLabel"></span><br> 6 <span i18n-content="nameOnCardLabel"></span><br>
7 <input type="text" id="nameOnCard"> 7 <input type="text" id="name-on-card">
8 </label> 8 </label>
9 </div> 9 </div>
10 <div> 10 <div>
11 <label id="creditCardNumberLabel"> 11 <label>
12 <span i18n-content="creditCardNumberLabel"></span><br> 12 <span i18n-content="creditCardNumberLabel"></span><br>
13 <input type="text" id="creditCardNumber"> 13 <input type="text" id="credit-card-number">
14 </label> 14 </label>
15 </div> 15 </div>
16 <div> 16 <div>
17 <label id="creditCardExpirationDateLabel"> 17 <label>
18 <span i18n-content="creditCardExpirationDateLabel"></span><br> 18 <span i18n-content="creditCardExpirationDateLabel"></span><br>
19 <select id="expirationMonth"></select> 19 <select id="expiration-month"></select>
20 <select id="expirationYear"></select> 20 <select id="expiration-year"></select>
21 </label> 21 </label>
22 </div> 22 </div>
23 </div> 23 </div>
24 <div class="action-area"> 24 <div class="action-area button-strip">
25 <div class="button-strip"> 25 <button type="reset" id="autofill-edit-credit-card-cancel-button"
26 <button type="reset" id="autoFillEditCreditCardCancelButton" 26 i18n-content="cancel"></button>
27 i18n-content="cancel"></button> 27 <button type="submit" id="autofill-edit-credit-card-apply-button" disabled
28 <button type="submit" id="autoFillEditCreditCardApplyButton" disabled 28 i18n-content="ok"></button>
29 i18n-content="ok"></button>
30 </div>
31 </div> 29 </div>
32 </div> 30 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698