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

Side by Side Diff: chrome/browser/sync/resources/merge_and_sync.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
« no previous file with comments | « no previous file | chrome/browser/sync/resources/setup_done.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,td,div,p,a,font,span {font-family: arial,sans-serif;} 5 body,td,div,p,a,font,span {font-family: arial,sans-serif;}
6 body { bgcolor:"#ffffff" } 6 body { bgcolor:"#ffffff" }
7 .gaia.le.button { font-family: Arial, Helvetica, sans-serif; font-size: smaller; } 7 .gaia.le.button { font-family: Arial, Helvetica, sans-serif; font-size: smaller; }
8 .endaligned { 8 .endaligned {
9 text-align: right; 9 text-align: right;
10 } 10 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 48
49 function showMergeAndSyncError() { 49 function showMergeAndSyncError() {
50 var throbber = document.getElementById('throbber_container'); 50 var throbber = document.getElementById('throbber_container');
51 throbber.style.display = "none"; 51 throbber.style.display = "none";
52 document.getElementById("header").innerHTML = 52 document.getElementById("header").innerHTML =
53 "<p><font size='-1'><b>" + templateData['setuperror'] 53 "<p><font size='-1'><b>" + templateData['setuperror']
54 + "</b></font></p>"; 54 + "</b></font></p>";
55 } 55 }
56 56
57 function onPageShown() {
58 document.getElementById("acceptMerge").focus();
59 }
60
57 </script> 61 </script>
58 </head> 62 </head>
59 <body onload="setInterval(advanceThrobber, 30);"> 63 <body onload="setInterval(advanceThrobber, 30);">
60 <table height="100%"> 64 <table height="100%">
61 <tr valign="top"> 65 <tr valign="top">
62 <td align="center"> 66 <td align="center">
63 <div id="header" align="left"> 67 <div id="header" align="left">
64 <p class="textaligned"><font size="-1"><b> 68 <p class="textaligned"><font size="-1"><b>
65 <span i18n-content="introduction"></span> 69 <span i18n-content="introduction"></span>
66 </b></font></p> 70 </b></font></p>
(...skipping 15 matching lines...) Expand all
82 <input id="acceptMerge" type="button" class="gaia le button" name="accept" 86 <input id="acceptMerge" type="button" class="gaia le button" name="accept"
83 i18n-values="value:mergeandsynclabel" 87 i18n-values="value:mergeandsynclabel"
84 onclick="acceptMergeAndSync();" /> 88 onclick="acceptMergeAndSync();" />
85 <input id="close" type="button" i18n-values="value:abortlabel" 89 <input id="close" type="button" i18n-values="value:abortlabel"
86 onclick="Close();" style="width:85"/> 90 onclick="Close();" style="width:85"/>
87 </td> 91 </td>
88 </tr> 92 </tr>
89 </table> 93 </table>
90 </body> 94 </body>
91 </html> 95 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/resources/setup_done.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698