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..3ddcd8fd9cddc637078b4e714433bc3d1228724d 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> |
+ <div i18n-content="fullNameLabel"></div> |
<input type="text" class="form" id="full-name"> |
</label> |
</div> |
<div class="input"> |
<label> |
- <div><span i18n-content="companyNameLabel"></span></div> |
+ <div i18n-content="companyNameLabel"></div> |
<input type="text" class="form" id="company-name"> |
</label> |
</div> |
<div class="input"> |
<label> |
- <div><span i18n-content="addrLine1Label"></span></div> |
+ <div i18n-content="addrLine1Label"></div> |
<input type="text" class="form" id="addr-line-1"> |
</label> |
</div> |
<div class="input"> |
<label> |
- <div><span i18n-content="addrLine2Label"></span></div> |
+ <div i18n-content="addrLine2Label"></div> |
<input type="text" class="form" id="addr-line-2"> |
</label> |
</div> |
@@ -29,17 +29,17 @@ |
<div class="row"> |
<div class="input cell"> |
<label for="city"> |
- <span i18n-content="cityLabel"></span> |
+ <div i18n-content="cityLabel"></div> |
arv (Not doing code reviews)
2011/02/24 23:45:54
This was just changed/fixed so that the label is i
Ilya Sherman
2011/02/25 07:29:01
This doesn't seem to have been fixed for the autof
|
</label> |
</div> |
<div class="input cell"> |
<label for="state"> |
- <span i18n-content="stateLabel"></span> |
+ <div i18n-content="stateLabel"></div> |
</label> |
</div> |
<div class="input cell"> |
<label for="zip-code"> |
- <span i18n-content="zipCodeLabel"></span> |
+ <div i18n-content="zipCodeLabel"></div> |
</label> |
</div> |
</div> |
@@ -57,7 +57,7 @@ |
</div> |
<div class="input"> |
<label> |
- <div><span i18n-content="countryLabel"></span></div> |
+ <div i18n-content="countryLabel"></div> |
<input type="text" class="form" id="country"> |
</label> |
</div> |
@@ -65,12 +65,12 @@ |
<div class="row"> |
<div class="input cell"> |
<label for="phone"> |
- <span i18n-content="phoneLabel"></span> |
+ <div i18n-content="phoneLabel"></div> |
</label> |
</div> |
<div class="input cell"> |
<label for="fax"> |
- <span i18n-content="faxLabel"></span> |
+ <div i18n-content="faxLabel"></div> |
</label> |
</div> |
</div> |
@@ -85,17 +85,15 @@ |
</div> |
<div class="input"> |
<label> |
- <div><span i18n-content="emailLabel"></span></div> |
+ <div i18n-content="emailLabel"></div> |
<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> |