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

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

Issue 442019: Fix keyboard focus in initial sync dialogs. (Closed)
Patch Set: Created 11 years 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
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,td,div,p,a,font,span { 5 body,td,div,p,a,font,span {
6 font-family: arial,sans-serif; 6 font-family: arial,sans-serif;
7 } 7 }
8 body { 8 body {
9 bgcolor:"#ffffff" 9 bgcolor:"#ffffff"
10 } 10 }
(...skipping 12 matching lines...) Expand all
23 </style> 23 </style>
24 <script> 24 <script>
25 function setShowFirstTimeSetupSummary() { 25 function setShowFirstTimeSetupSummary() {
26 document.getElementById("summary").innerHTML = 26 document.getElementById("summary").innerHTML =
27 "<p><font size='-1'>" + templateData['firsttimesetupsummary'] 27 "<p><font size='-1'>" + templateData['firsttimesetupsummary']
28 + "</font></p>"; 28 + "</font></p>";
29 } 29 }
30 function setSyncedToUser(synced_to) { 30 function setSyncedToUser(synced_to) {
31 document.getElementById('user').innerHTML = synced_to; 31 document.getElementById('user').innerHTML = synced_to;
32 } 32 }
33 function onPageShown() {
34 document.getElementById("close").focus();
35 }
33 </script> 36 </script>
34 <body bgcolor="#ffffff" vlink="#666666 37 <body bgcolor="#ffffff" vlink="#666666
35 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize" 38 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"
36 style="margin: 10px"> 39 style="margin: 10px">
37 <table height="100%" width="100%" margin="0" cellpadding="0"> 40 <table height="100%" width="100%" margin="0" cellpadding="0">
38 <tr valign="top"> 41 <tr valign="top">
39 <td> 42 <td>
40 <p><font size="-1"><b><span i18n-content="success"></span></b></font></p> 43 <p><font size="-1"><b><span i18n-content="success"></span></b></font></p>
41 <div align="center"> 44 <div align="center">
42 <img src="success-large.png" /> 45 <img src="success-large.png" />
43 </div> 46 </div>
44 <br /> 47 <br />
45 <p><font size="-1"><span id="user"></span></font></p> 48 <p><font size="-1"><span id="user"></span></font></p>
46 <div id="summary"> 49 <div id="summary">
47 <p><font size="-1"><span i18n-content="setupsummary"></span></font></p> 50 <p><font size="-1"><span i18n-content="setupsummary"></span></font></p>
48 </div> 51 </div>
49 </td> 52 </td>
50 </tr> 53 </tr>
51 <tr valign="bottom"> 54 <tr valign="bottom">
52 <td class="endaligned"> 55 <td class="endaligned">
53 <input id="close" type="submit" i18n-values="value:okay" style="width:85" 56 <input id="close" type="submit" i18n-values="value:okay" style="width:85"
54 onclick='chrome.send("DialogClose", [""])' /> 57 onclick='chrome.send("DialogClose", [""])' />
55 </td> 58 </td>
56 </tr> 59 </tr>
57 </table> 60 </table>
58 </body> 61 </body>
59 </html> 62 </html>
OLDNEW
« no previous file with comments | « chrome/browser/sync/resources/merge_and_sync.html ('k') | chrome/browser/sync/resources/setup_flow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698