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

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

Issue 3792007: Fix some problems with the ENTER_PASSPHRASE state in sync setup.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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/passphrase.html ('k') | chrome/browser/sync/sync_setup_flow.h » ('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.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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 var throbber = document.getElementById('throb'); 61 var throbber = document.getElementById('throb');
62 throbber.style.backgroundPositionX = 62 throbber.style.backgroundPositionX =
63 ((parseInt(getComputedStyle(throbber).backgroundPositionX) - 16) % 63 ((parseInt(getComputedStyle(throbber).backgroundPositionX) - 16) %
64 576) + 'px'; 64 576) + 'px';
65 } 65 }
66 setInterval(advanceThrobber, 30); 66 setInterval(advanceThrobber, 30);
67 </script> 67 </script>
68 </head> 68 </head>
69 <body i18n-values=".style.fontFamily:fontfamily"> 69 <body i18n-values=".style.fontFamily:fontfamily">
70 <form id="settingUpForm" onSubmit="return false;"> 70 <form id="settingUpForm" onSubmit="return false;">
71 <div id="setting_up>" 71 <div id="setting_up">
72 <span id="throbber_container"> 72 <span id="throbber_container">
73 <span id="throb"></span> 73 <span id="throb"></span>
74 </span> 74 </span>
75 <div id="setting_up_label" i18n-content="settingup"></div> 75 <div id="setting_up_label" i18n-content="settingup"></div>
76 </div> 76 </div>
77 <div class="sync-footer"> 77 <div class="sync-footer">
78 <input id="cancelButton" type="button" i18n-values="value:cancel" 78 <input id="cancelButton" type="button" i18n-values="value:cancel"
79 onclick='chrome.send("DialogClose", [""])' /> 79 onclick='chrome.send("DialogClose", [""])' />
80 </div> 80 </div>
81 </form> 81 </form>
82 </body> 82 </body>
83 </html> 83 </html>
OLDNEW
« no previous file with comments | « chrome/browser/sync/resources/passphrase.html ('k') | chrome/browser/sync/sync_setup_flow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698