Chromium Code Reviews| 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> |