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

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: 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
« no previous file with comments | « no previous file | chrome/browser/resources/options/autofill_edit_address_overlay.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..6b3deca017498520c396a2c730e8fab0a254fca4 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">
Ilya Sherman 2011/02/23 00:47:45 note: didn't change this id because all the exampl
James Hawkins 2011/02/23 01:41:21 Yes, but you'll have to change the corresponding j
Ilya Sherman 2011/02/23 01:52:54 Ok, done.
- <h1 id="autoFillAddressTitle"></h1>
+ <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="zipCode">
<span i18n-content="zipCodeLabel"></span>
</label>
</div>
@@ -56,45 +56,45 @@
</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>
« no previous file with comments | « no previous file | chrome/browser/resources/options/autofill_edit_address_overlay.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698