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

Unified Diff: chrome/browser/resources/options/autofill_edit_creditcard_overlay.html

Issue 7063029: Options: Style cleanup - id attribute first. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years, 7 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 e937c153ff2d09ecef4040e502dca3a7891780fe..fa3825a0bc5b8e989cac54fd7daff9931e3e15f7 100644
--- a/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
+++ b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
@@ -1,16 +1,16 @@
-<div class="page" id="autofill-edit-credit-card-overlay" hidden>
+<div id="autofill-edit-credit-card-overlay" class="page" hidden>
<h1 id="autofill-credit-card-title"></h1>
<div class="content-area">
<div class="input">
<label>
<span i18n-content="nameOnCardLabel"></span><br>
- <input type="text" id="name-on-card">
+ <input id="name-on-card" type="text">
</label>
</div>
<div class="input">
<label>
<span i18n-content="creditCardNumberLabel"></span><br>
- <input type="text" id="credit-card-number">
+ <input id="credit-card-number" type="text">
</label>
</div>
<div class="input">
@@ -22,9 +22,9 @@
</div>
</div>
<div class="action-area button-strip">
- <button type="reset" id="autofill-edit-credit-card-cancel-button"
+ <button id="autofill-edit-credit-card-cancel-button" type="reset"
i18n-content="cancel"></button>
- <button type="submit" id="autofill-edit-credit-card-apply-button" disabled
- i18n-content="ok"></button>
+ <button id="autofill-edit-credit-card-apply-button" type="submit"
+ i18n-content="ok" disabled></button>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698