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

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

Issue 6575012: More autofill overlay HTML cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unused files 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_address_overlay.html
diff --git a/chrome/browser/resources/options/autofill_edit_address_overlay.html b/chrome/browser/resources/options/autofill_edit_address_overlay.html
index 0f4d3f2dce5ecba7cb5dad511037d056cce273fb..6fc4bc106c14ad3264bc79e9859f9512acdd3c43 100644
--- a/chrome/browser/resources/options/autofill_edit_address_overlay.html
+++ b/chrome/browser/resources/options/autofill_edit_address_overlay.html
@@ -3,25 +3,25 @@
<div class="content-area">
<div class="input">
<label>
- <div><span i18n-content="fullNameLabel"></span></div>
+ <span i18n-content="fullNameLabel"></span>
<input type="text" class="form" id="full-name">
</label>
</div>
<div class="input">
<label>
- <div><span i18n-content="companyNameLabel"></span></div>
+ <span i18n-content="companyNameLabel"></span>
<input type="text" class="form" id="company-name">
</label>
</div>
<div class="input">
<label>
- <div><span i18n-content="addrLine1Label"></span></div>
+ <span i18n-content="addrLine1Label"></span>
<input type="text" class="form" id="addr-line-1">
</label>
</div>
<div class="input">
<label>
- <div><span i18n-content="addrLine2Label"></span></div>
+ <span i18n-content="addrLine2Label"></span>
<input type="text" class="form" id="addr-line-2">
</label>
</div>
@@ -57,7 +57,7 @@
</div>
<div class="input">
<label>
- <div><span i18n-content="countryLabel"></span></div>
+ <span i18n-content="countryLabel"></span>
<input type="text" class="form" id="country">
</label>
</div>
@@ -85,17 +85,15 @@
</div>
<div class="input">
<label>
- <div><span i18n-content="emailLabel"></span></div>
+ <span i18n-content="emailLabel"></span>
<input type="text" class="form" id="email">
</label>
</div>
</div>
- <div class="action-area">
- <div class="button-strip">
- <button type="reset" id="autofill-edit-address-cancel-button"
- i18n-content="cancel"></button>
- <button type="submit" id="autofill-edit-address-apply-button" disabled
- i18n-content="ok"></button>
- </div>
+ <div class="action-area button-strip">
+ <button type="reset" id="autofill-edit-address-cancel-button"
+ i18n-content="cancel"></button>
+ <button type="submit" id="autofill-edit-address-apply-button" disabled
+ i18n-content="ok"></button>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698