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

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

Issue 6309002: Further tweaks to the passphrase UI to deal with passphrase entry.... (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
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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 function onRadioChange() { 417 function onRadioChange() {
418 switchToMode(getRadioCheckedValue()); 418 switchToMode(getRadioCheckedValue());
419 } 419 }
420 420
421 function checkPassphraseMatch() { 421 function checkPassphraseMatch() {
422 var emptyError = document.getElementById("emptyerror"); 422 var emptyError = document.getElementById("emptyerror");
423 var mismatchError = document.getElementById("mismatcherror"); 423 var mismatchError = document.getElementById("mismatcherror");
424 emptyError.style.display = "none"; 424 emptyError.style.display = "none";
425 mismatchError.style.display = "none"; 425 mismatchError.style.display = "none";
426 426
427 if (getRadioCheckedValue() != "explicit") { 427 var f = document.getElementById("chooseDataTypesForm");
428 if (getRadioCheckedValue() != "explicit" || f.option[0].disabled) {
428 return true; 429 return true;
429 } 430 }
430 var f = document.getElementById("chooseDataTypesForm");
431 if (f.passphrase.value.length == 0) { 431 if (f.passphrase.value.length == 0) {
432 emptyError.style.display = "block"; 432 emptyError.style.display = "block";
433 return false; 433 return false;
434 } 434 }
435 if (f.confirmpassphrase.value != f.passphrase.value) { 435 if (f.confirmpassphrase.value != f.passphrase.value) {
436 mismatchError.style.display = "block"; 436 mismatchError.style.display = "block";
437 return false; 437 return false;
438 } 438 }
439 return true; 439 return true;
440 } 440 }
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 </div> 603 </div>
604 604
605 <div class="sync-footer"> 605 <div class="sync-footer">
606 <input id="okButton" type="submit" i18n-values="value:ok" /> 606 <input id="okButton" type="submit" i18n-values="value:ok" />
607 <input id="cancelButton" type="button" i18n-values="value:cancel" 607 <input id="cancelButton" type="button" i18n-values="value:cancel"
608 onclick='chrome.send("DialogClose", [""])' /> 608 onclick='chrome.send("DialogClose", [""])' />
609 </div> 609 </div>
610 </form> 610 </form>
611 </body> 611 </body>
612 </html> 612 </html>
OLDNEW
« no previous file with comments | « chrome/browser/sync/profile_sync_service_password_unittest.cc ('k') | chrome/browser/sync/resources/passphrase.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698