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

Side by Side Diff: chrome/browser/sync/resources/configure.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, 11 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 | « no previous file | chrome/browser/sync/resources/firstpassphrase.html » ('j') | 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.33em; 6 line-height: 1.33em;
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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 </div> 559 </div>
560 560
561 </div> 561 </div>
562 <div id="encryption-tab-contents" class="sync-config-tab-contents-inactive"> 562 <div id="encryption-tab-contents" class="sync-config-tab-contents-inactive">
563 <div id="sync-encryption-instructions" 563 <div id="sync-encryption-instructions"
564 i18n-content="encryptionInstructions"></div> 564 i18n-content="encryptionInstructions"></div>
565 565
566 <div> 566 <div>
567 <input id="google-option" name="option" type="radio" 567 <input id="google-option" name="option" type="radio"
568 value="google" onchange="onRadioChange();"> 568 value="google" onchange="onRadioChange();">
569 <span i18n-content="googleOption"></span> 569 <label for="google-option" i18n-content="googleOption"></label>
570 </input> 570 </input>
571 </div> 571 </div>
572 <div> 572 <div>
573 <input id="explicit-option" name="option" type="radio" 573 <input id="explicit-option" name="option" type="radio" value="explicit"
574 value="explicit" onchange="onRadioChange();"> 574 onchange="onRadioChange();">
575 <div id="learn-more-link"> 575 <div id="learn-more-link">
576 <a i18n-values="href:encryptionhelpurl" target="_blank" 576 <a i18n-values="href:encryptionhelpurl" target="_blank"
577 i18n-content="learnmore"></a> 577 i18n-content="learnmore"></a>
578 </div> 578 </div>
579 <span i18n-content="explicitOption"></span> 579 <label for="explicit-option" i18n-content="explicitOption"></label>
580 </input> 580 </input>
581 </div> 581 </div>
582 582
583 <div class="sync-section" id="section-google"> 583 <div class="sync-section" id="section-google">
584 <div i18n-content="sectionGoogleMessage"></div> 584 <div i18n-content="sectionGoogleMessage"></div>
585 </div> 585 </div>
586 <div class="sync-section" id="section-explicit"> 586 <div class="sync-section" id="section-explicit">
587 <div i18n-content="sectionExplicitMessage" id="explicit-message"></div> 587 <div i18n-content="sectionExplicitMessage" id="explicit-message"></div>
588 <div> 588 <div>
589 <div i18n-content="passphraseLabel" id="passphraseLabel"></div> 589 <div i18n-content="passphraseLabel" id="passphraseLabel"></div>
(...skipping 21 matching lines...) Expand all
611 </div> 611 </div>
612 612
613 <div class="sync-footer"> 613 <div class="sync-footer">
614 <input id="okButton" type="submit" i18n-values="value:ok" /> 614 <input id="okButton" type="submit" i18n-values="value:ok" />
615 <input id="cancelButton" type="button" i18n-values="value:cancel" 615 <input id="cancelButton" type="button" i18n-values="value:cancel"
616 onclick='chrome.send("DialogClose", [""])' /> 616 onclick='chrome.send("DialogClose", [""])' />
617 </div> 617 </div>
618 </form> 618 </form>
619 </body> 619 </body>
620 </html> 620 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/resources/firstpassphrase.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698