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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/resources/configure.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/resources/firstpassphrase.html
===================================================================
--- chrome/browser/sync/resources/firstpassphrase.html (revision 72509)
+++ chrome/browser/sync/resources/firstpassphrase.html (working copy)
@@ -148,22 +148,25 @@
<div class="sync-instructions" id="instructions"
i18n-content="instructions"></div>
<div>
- <input name="option" type="radio" value="google" onchange="onRadioChange();">
- <span i18n-content="googleOption"></span>
+ <input name="option" type="radio" value="google"
+ id="google-option" onchange="onRadioChange();">
+ <label for="google-option" i18n-content="googleOption"></label>
</input>
</div>
<div>
- <input name="option" type="radio" value="explicit" onchange="onRadioChange();">
+ <input name="option" type="radio" value="explicit"
+ id="explicit-option" onchange="onRadioChange();">
<div id="learn-more-link">
<a i18n-values="href:encryptionhelpurl" target="_blank"
i18n-content="learnmore"></a>
</div>
- <span i18n-content="explicitOption"></span>
+ <label for="explicit-option" i18n-content="explicitOption"></label>
</input>
</div>
<div>
- <input name="option" type="radio" value="nothanks" onchange="onRadioChange();">
- <span i18n-content="nothanksOption"></span>
+ <input name="option" type="radio" value="nothanks"
+ id="nothanks-option" onchange="onRadioChange();">
+ <label for="nothanks-option" i18n-content="nothanksOption"></label>
</input>
</div>
« 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