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

Side by Side Diff: chrome/browser/sync/resources/firstpassphrase.html

Issue 6271023: Use labels for the new radio buttons in the sync dialogs.... (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/sync/resources/configure.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html i18n-values="dir:textdirection;"> 1 <html i18n-values="dir:textdirection;">
2 <head> 2 <head>
3 <title></title> 3 <title></title>
4 <style type="text/css"> 4 <style type="text/css">
5 body { 5 body {
6 line-height: 1.5em; 6 line-height: 1.5em;
7 background: #FFFFFF; 7 background: #FFFFFF;
8 font-size: 11pt; 8 font-size: 11pt;
9 } 9 }
10 html[os='mac'] body { 10 html[os='mac'] body {
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 chrome.send("FirstPassphrase", [result]); 141 chrome.send("FirstPassphrase", [result]);
142 } 142 }
143 </script> 143 </script>
144 </head> 144 </head>
145 <body i18n-values=".style.fontFamily:fontfamily" onload="setupDialog();"> 145 <body i18n-values=".style.fontFamily:fontfamily" onload="setupDialog();">
146 <form id="form" onSubmit="sendValuesAndClose(); return false;"> 146 <form id="form" onSubmit="sendValuesAndClose(); return false;">
147 <div class="sync-header" id="title" i18n-content="title"></div> 147 <div class="sync-header" id="title" i18n-content="title"></div>
148 <div class="sync-instructions" id="instructions" 148 <div class="sync-instructions" id="instructions"
149 i18n-content="instructions"></div> 149 i18n-content="instructions"></div>
150 <div> 150 <div>
151 <input name="option" type="radio" value="google" onchange="onRadioChange();" > 151 <input name="option" type="radio" value="google"
152 <span i18n-content="googleOption"></span> 152 id="google-option" onchange="onRadioChange();">
153 <label for="google-option" i18n-content="googleOption"></label>
153 </input> 154 </input>
154 </div> 155 </div>
155 <div> 156 <div>
156 <input name="option" type="radio" value="explicit" onchange="onRadioChange() ;"> 157 <input name="option" type="radio" value="explicit"
158 id="explicit-option" onchange="onRadioChange();">
157 <div id="learn-more-link"> 159 <div id="learn-more-link">
158 <a i18n-values="href:encryptionhelpurl" target="_blank" 160 <a i18n-values="href:encryptionhelpurl" target="_blank"
159 i18n-content="learnmore"></a> 161 i18n-content="learnmore"></a>
160 </div> 162 </div>
161 <span i18n-content="explicitOption"></span> 163 <label for="explicit-option" i18n-content="explicitOption"></label>
162 </input> 164 </input>
163 </div> 165 </div>
164 <div> 166 <div>
165 <input name="option" type="radio" value="nothanks" onchange="onRadioChange() ;"> 167 <input name="option" type="radio" value="nothanks"
166 <span i18n-content="nothanksOption"></span> 168 id="nothanks-option" onchange="onRadioChange();">
169 <label for="nothanks-option" i18n-content="nothanksOption"></label>
167 </input> 170 </input>
168 </div> 171 </div>
169 172
170 <div class="sync-section" id="section-google"> 173 <div class="sync-section" id="section-google">
171 <div i18n-content="sectionGoogleMessage"></div> 174 <div i18n-content="sectionGoogleMessage"></div>
172 </div> 175 </div>
173 <div class="sync-section" id="section-explicit"> 176 <div class="sync-section" id="section-explicit">
174 <div i18n-content="sectionExplicitMessage"></div> 177 <div i18n-content="sectionExplicitMessage"></div>
175 <div> 178 <div>
176 <div i18n-content="passphraseLabel" id="passphraseLabel"></div> 179 <div i18n-content="passphraseLabel" id="passphraseLabel"></div>
(...skipping 14 matching lines...) Expand all
191 <div class="sync-section" id="section-nothanks"> 194 <div class="sync-section" id="section-nothanks">
192 <div i18n-content="sectionNothanksMessage"></div> 195 <div i18n-content="sectionNothanksMessage"></div>
193 </div> 196 </div>
194 197
195 <div class="sync-footer"> 198 <div class="sync-footer">
196 <input id="okButton" type="submit" i18n-values="value:ok" /> 199 <input id="okButton" type="submit" i18n-values="value:ok" />
197 </div> 200 </div>
198 </form> 201 </form>
199 </body> 202 </body>
200 </html> 203 </html>
OLDNEW
« no previous file with comments | « chrome/browser/sync/resources/configure.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698