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

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: Updated the overlay page id as well 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..9f9e476df850649e0057f16ff78c2220853821a0 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="auto-fill-edit-address-overlay">
James Hawkins 2011/02/23 02:35:42 s/auto-fill/autofill/ here and elsewhere.
Ilya Sherman 2011/02/23 03:49:05 Done.
+ <h1 id="auto-fill-address-title"></h1>
<div class="content-area">
<div class="input">
- <label id="fullNameLabel">
+ <label>
<div><span i18n-content="fullNameLabel"></span></div>
- <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="auto-fill-edit-address-cancel-button"
i18n-content="cancel"></button>
- <button type="submit" id="autoFillEditAddressApplyButton" disabled
+ <button type="submit" id="auto-fill-edit-address-apply-button" disabled
i18n-content="ok"></button>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698