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

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

Issue 6552002: Used dashed-form for autofill overlay ids (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: auto-fill => autofill, restore overlay page name 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 ba6696801af28ffc44fd392217aaa439e62df354..0f4d3f2dce5ecba7cb5dad511037d056cce273fb 100644
--- a/chrome/browser/resources/options/autofill_edit_address_overlay.html
+++ b/chrome/browser/resources/options/autofill_edit_address_overlay.html
@@ -1,44 +1,44 @@
-<div class="page hidden" id="autoFillEditAddressOverlay">
- <h1 id="autoFillAddressTitle"></h1>
+<div class="page hidden" id="autofill-edit-address-overlay">
+ <h1 id="autofill-address-title"></h1>
<div class="content-area">
<div class="input">
- <label id="fullNameLabel">
+ <label>
<div><span i18n-content="fullNameLabel"></span></div>
arv (Not doing code reviews) 2011/02/23 17:58:10 My comment on the other patch was that in this cas
Ilya Sherman 2011/02/23 23:48:50 Ah, ok: http://codereview.chromium.org/6575012/
- <input type="text" class="form" class="form" id="fullName">
+ <input type="text" class="form" id="full-name">
</label>
</div>
<div class="input">
- <label id="companyNameLabel">
+ <label>
<div><span i18n-content="companyNameLabel"></span></div>
- <input type="text" class="form" class="form" id="companyName">
+ <input type="text" class="form" id="company-name">
</label>
</div>
<div class="input">
- <label id="addrLine1Label">
+ <label>
<div><span i18n-content="addrLine1Label"></span></div>
- <input type="text" class="form" class="form" id="addrLine1">
+ <input type="text" class="form" id="addr-line-1">
</label>
</div>
<div class="input">
- <label id="addrLine2Label">
+ <label>
<div><span i18n-content="addrLine2Label"></span></div>
- <input type="text" class="form" class="form" id="addrLine2">
+ <input type="text" class="form" id="addr-line-2">
</label>
</div>
<div class="table">
<div class="row">
<div class="input cell">
- <label id="cityLabel" for="city">
+ <label for="city">
<span i18n-content="cityLabel"></span>
</label>
</div>
<div class="input cell">
- <label id="stateLabel" for="state">
+ <label for="state">
<span i18n-content="stateLabel"></span>
</label>
</div>
<div class="input cell">
- <label id="zipCodeLabel" for="zipCode">
+ <label for="zip-code">
<span i18n-content="zipCodeLabel"></span>
</label>
</div>
@@ -51,50 +51,50 @@
<input type="text" class="form" id="state">
</div>
<div class="input cell">
- <input type="text" class="form" id="zipCode">
+ <input type="text" class="form" id="zip-code">
</div>
</div>
</div>
<div class="input">
- <label id="countryLabel">
+ <label>
<div><span i18n-content="countryLabel"></span></div>
- <input type="text" class="form" class="form" id="country">
+ <input type="text" class="form" id="country">
</label>
</div>
<div class="table">
<div class="row">
<div class="input cell">
- <label id="phoneLabel" for="phone">
+ <label for="phone">
<span i18n-content="phoneLabel"></span>
</label>
</div>
<div class="input cell">
- <label id="faxLabel" for="fax">
+ <label for="fax">
<span i18n-content="faxLabel"></span>
</label>
</div>
</div>
<div class="row">
<div class="input cell">
- <input type="text" class="form" class="form" id="phone">
+ <input type="text" class="form" id="phone">
</div>
<div class="input cell">
- <input type="text" class="form" class="form" id="fax">
+ <input type="text" class="form" id="fax">
</div>
</div>
</div>
<div class="input">
- <label id="emailLabel">
+ <label>
<div><span i18n-content="emailLabel"></span></div>
- <input type="text" class="form" class="form" id="email">
+ <input type="text" class="form" id="email">
</label>
</div>
</div>
<div class="action-area">
<div class="button-strip">
- <button type="reset" id="autoFillEditAddressCancelButton"
+ <button type="reset" id="autofill-edit-address-cancel-button"
i18n-content="cancel"></button>
- <button type="submit" id="autoFillEditAddressApplyButton" disabled
+ <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