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

Side by Side 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 unified diff | Download patch
OLDNEW
1 <div id="manage-profile-overlay" class="page" hidden> 1 <div id="manage-profile-overlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <!-- Dialog for managing profiles. --> 3 <!-- Dialog for managing profiles. -->
4 <div id="manage-profile-overlay-manage" hidden> 4 <div id="manage-profile-overlay-manage" hidden>
5 <h1 i18n-content="manageProfile"></h1> 5 <h1 i18n-content="manageProfile"></h1>
6 <div id="manage-profile-content" class="content-area"> 6 <div id="manage-profile-content" class="content-area">
7 <div id="manage-profile-icon-label" 7 <div id="manage-profile-icon-label"
8 i18n-content="manageProfilesIconLabel"> 8 i18n-content="manageProfilesIconLabel">
9 </div> 9 </div>
10 <grid id="manage-profile-icon-grid"></grid> 10 <grid id="manage-profile-icon-grid"></grid>
11 <div id="manage-profile-name-input-container"> 11 <div id="manage-profile-name-input-container">
12 <label> 12 <label>
13 <span i18n-content="manageProfilesNameLabel"></span> 13 <span id="manage-profile-name-label" for="manage-profile-name"
14 i18n-content="manageProfilesNameLabel">
15 </span>
14 <input id="manage-profile-name" type="text" pattern=".*\S.*" required> 16 <input id="manage-profile-name" type="text" pattern=".*\S.*" required>
15 </label> 17 </label>
16 </div> 18 </div>
17 <div id="manage-profile-error-bubble" hidden></div> 19 <div id="manage-profile-error-bubble" hidden></div>
18 </div> 20 </div>
19 <div class="action-area"> 21 <div class="action-area">
20 <div class="action-area-shortcut-container"> 22 <div class="action-area-shortcut-container">
21 <button id="remove-shortcut-button" 23 <button id="remove-shortcut-button"
22 i18n-content="removeProfileShortcutButton" hidden> 24 i18n-content="removeProfileShortcutButton" hidden>
23 </button> 25 </button>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 </div> 76 </div>
75 </div> 77 </div>
76 <!-- Dialog for creating profiles. --> 78 <!-- Dialog for creating profiles. -->
77 <div id="manage-profile-overlay-create" hidden> 79 <div id="manage-profile-overlay-create" hidden>
78 <h1 i18n-content="createProfileTitle"></h1> 80 <h1 i18n-content="createProfileTitle"></h1>
79 <div id="create-profile-content" class="content-area"> 81 <div id="create-profile-content" class="content-area">
80 <div id="create-profile-instructions"></div> 82 <div id="create-profile-instructions"></div>
81 <grid id="create-profile-icon-grid"></grid> 83 <grid id="create-profile-icon-grid"></grid>
82 <div id="create-profile-name-input-container"> 84 <div id="create-profile-name-input-container">
83 <label> 85 <label>
84 <span id="create-profile-name-label" 86 <span id="create-profile-name-label" for="create-profile-name"
85 i18n-content="manageProfilesNameLabel"> 87 i18n-content="manageProfilesNameLabel">
86 </span> 88 </span>
87 <input id="create-profile-name" type="text" required> 89 <input id="create-profile-name" type="text" required>
88 </label> 90 </label>
89 </div> 91 </div>
90 </div> 92 </div>
91 <div id="create-profile-supervised-content-area" class="content-area"> 93 <div id="create-profile-supervised-content-area" class="content-area">
92 <div id="create-shortcut-container" class="checkbox" hidden> 94 <div id="create-shortcut-container" class="checkbox" hidden>
93 <label> 95 <label>
94 <input id="create-shortcut" type="checkbox"> 96 <input id="create-shortcut" type="checkbox">
95 <span i18n-content="createProfileShortcutCheckbox"></span> 97 <span for="create-shortcut"
98 i18n-content="createProfileShortcutCheckbox">
99 </span>
96 </label> 100 </label>
97 </div> 101 </div>
98 <div id="create-profile-supervised-container" class="checkbox"> 102 <div id="create-profile-supervised-container" class="checkbox">
99 <label> 103 <label>
100 <input id="create-profile-supervised" type="checkbox"> 104 <input id="create-profile-supervised" type="checkbox">
101 <span id="create-profile-supervised-signed-in"> 105 <span id="create-profile-supervised-signed-in">
102 <span id="create-profile-supervised-signed-in-label"></span> 106 <span id="create-profile-supervised-signed-in-label"></span>
103 <span id="create-profile-supervised-account-details-out-of-date-labe l" 107 <span id="create-profile-supervised-account-details-out-of-date-labe l"
104 hidden> 108 hidden>
105 </span> 109 </span>
(...skipping 23 matching lines...) Expand all
129 </button> 133 </button>
130 <div class="button-strip"> 134 <div class="button-strip">
131 <button id="create-profile-cancel" i18n-content="cancel"></button> 135 <button id="create-profile-cancel" i18n-content="cancel"></button>
132 <button id="create-profile-ok" i18n-content="createProfileConfirm" 136 <button id="create-profile-ok" i18n-content="createProfileConfirm"
133 class="default-button"> 137 class="default-button">
134 </button> 138 </button>
135 </div> 139 </div>
136 </div> 140 </div>
137 </div> 141 </div>
138 </div> 142 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698