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

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

Issue 562023003: Revert of Fix some more for= usage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/manage_profile_overlay.html
diff --git a/chrome/browser/resources/options/manage_profile_overlay.html b/chrome/browser/resources/options/manage_profile_overlay.html
index 8d6650900547fd035b575c825c71125b20a15f27..3a5eb856b1a68a6c1bfd8c6265e40596cee5a415 100644
--- a/chrome/browser/resources/options/manage_profile_overlay.html
+++ b/chrome/browser/resources/options/manage_profile_overlay.html
@@ -10,7 +10,9 @@
<grid id="manage-profile-icon-grid"></grid>
<div id="manage-profile-name-input-container">
<label>
- <span i18n-content="manageProfilesNameLabel"></span>
+ <span id="manage-profile-name-label" for="manage-profile-name"
+ i18n-content="manageProfilesNameLabel">
+ </span>
<input id="manage-profile-name" type="text" pattern=".*\S.*" required>
</label>
</div>
@@ -81,7 +83,7 @@
<grid id="create-profile-icon-grid"></grid>
<div id="create-profile-name-input-container">
<label>
- <span id="create-profile-name-label"
+ <span id="create-profile-name-label" for="create-profile-name"
i18n-content="manageProfilesNameLabel">
</span>
<input id="create-profile-name" type="text" required>
@@ -92,7 +94,9 @@
<div id="create-shortcut-container" class="checkbox" hidden>
<label>
<input id="create-shortcut" type="checkbox">
- <span i18n-content="createProfileShortcutCheckbox"></span>
+ <span for="create-shortcut"
+ i18n-content="createProfileShortcutCheckbox">
+ </span>
</label>
</div>
<div id="create-profile-supervised-container" class="checkbox">

Powered by Google App Engine
This is Rietveld 408576698