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

Unified 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: One selector per line 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
diff --git a/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
index 13cacd21bbbc28f546ae032d7ca891f022588e74..11f1b0c39ce4191c432a5a7f0818d0728a6a09a6 100644
--- a/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
+++ b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
@@ -1,32 +1,30 @@
-<div class="page hidden" id="autoFillEditCreditCardOverlay">
- <h1 id="autoFillCreditCardTitle"></h1>
+<div class="page hidden" id="autofill-edit-credit-card-overlay">
+ <h1 id="autofill-credit-card-title"></h1>
<div class="content-area">
- <div>
- <label id="nameOnCardLabel">
+ <div class="input">
+ <label>
<span i18n-content="nameOnCardLabel"></span><br>
- <input type="text" id="nameOnCard">
+ <input type="text" id="name-on-card">
</label>
</div>
- <div>
- <label id="creditCardNumberLabel">
+ <div class="input">
+ <label>
<span i18n-content="creditCardNumberLabel"></span><br>
- <input type="text" id="creditCardNumber">
+ <input type="text" id="credit-card-number">
</label>
</div>
- <div>
- <label id="creditCardExpirationDateLabel">
+ <div class="input">
+ <label>
<span i18n-content="creditCardExpirationDateLabel"></span><br>
- <select id="expirationMonth"></select>
- <select id="expirationYear"></select>
+ <select id="expiration-month"></select>
+ <select id="expiration-year"></select>
</label>
</div>
</div>
- <div class="action-area">
- <div class="button-strip">
- <button type="reset" id="autoFillEditCreditCardCancelButton"
- i18n-content="cancel"></button>
- <button type="submit" id="autoFillEditCreditCardApplyButton" disabled
- i18n-content="ok"></button>
- </div>
+ <div class="action-area button-strip">
+ <button type="reset" id="autofill-edit-credit-card-cancel-button"
+ i18n-content="cancel"></button>
+ <button type="submit" id="autofill-edit-credit-card-apply-button" disabled
+ i18n-content="ok"></button>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698