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

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

Issue 23665004: sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 id="autofill-edit-credit-card-overlay" class="page" hidden> 1 <dialog id="autofill-edit-credit-card-overlay" class="page">
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 id="autofill-credit-card-title"></h1> 3 <h1 id="autofill-credit-card-title"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <label class="settings-row"> 5 <label class="settings-row">
6 <div i18n-content="nameOnCardLabel"></div> 6 <div i18n-content="nameOnCardLabel"></div>
7 <input id="name-on-card" type="text"> 7 <input id="name-on-card" type="text">
8 </label> 8 </label>
9 9
10 <label class="settings-row"> 10 <label class="settings-row">
11 <div i18n-content="creditCardNumberLabel"></div> 11 <div i18n-content="creditCardNumberLabel"></div>
12 <input id="credit-card-number" type="text"> 12 <input id="credit-card-number" type="text">
13 </label> 13 </label>
14 14
15 <div class="settings-row"> 15 <div class="settings-row">
16 <div id="creditCardExpirationLabel" 16 <div id="creditCardExpirationLabel"
17 i18n-content="creditCardExpirationDateLabel"></div> 17 i18n-content="creditCardExpirationDateLabel"></div>
18 <select id="expiration-month" aria-labelledby="creditCardExpirationLabel"> 18 <select id="expiration-month" aria-labelledby="creditCardExpirationLabel">
19 </select> 19 </select>
20 <select id="expiration-year" aria-labelledby="creditCardExpirationLabel"> 20 <select id="expiration-year" aria-labelledby="creditCardExpirationLabel">
21 </select> 21 </select>
22 </div> 22 </div>
23 </div> 23 </div>
24 24
25 <div class="action-area button-strip"> 25 <div class="action-area button-strip">
26 <button id="autofill-edit-credit-card-cancel-button" type="reset" 26 <button id="autofill-edit-credit-card-cancel-button" type="reset"
27 i18n-content="cancel"></button> 27 i18n-content="cancel"></button>
28 <button id="autofill-edit-credit-card-apply-button" type="submit" 28 <button id="autofill-edit-credit-card-apply-button" type="submit"
29 class="default-button" i18n-content="ok" disabled></button> 29 class="default-button" i18n-content="ok" disabled></button>
30 </div> 30 </div>
31 </div> 31 </dialog>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698