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

Side by Side Diff: chrome/browser/remoting/resources/remoting_setup_flow.html

Issue 3191013: ResourceBundle is loading a wrong resource on Windows for sync (Closed)
Patch Set: Created 10 years, 4 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
« no previous file with comments | « chrome/browser/remoting/resources/remoting_setup_done.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html id='t'> 1 <html id='t'>
2 <head> 2 <head>
3 <title></title> 3 <title></title>
4 <script type="text/javascript"> 4 <script type="text/javascript">
5 // Called once, when this html/js is loaded. 5 // Called once, when this html/js is loaded.
6 function showTheRightIframe() { 6 function showTheRightIframe() {
7 hideAllPages(); 7 hideAllPages();
8 var args = JSON.parse(chrome.dialogArguments); 8 var args = JSON.parse(chrome.dialogArguments);
9 document.getElementById(args.iframeToShow).style.display = 'block'; 9 document.getElementById(args.iframeToShow).style.display = 'block';
10 document.getElementById(args.iframeToShow).tabIndex = 0; 10 document.getElementById(args.iframeToShow).tabIndex = 0;
(...skipping 15 matching lines...) Expand all
26 </head> 26 </head>
27 <body style="margin:0; border:0;" onload="showTheRightIframe();"> 27 <body style="margin:0; border:0;" onload="showTheRightIframe();">
28 <iframe id="login" frameborder="0" width="100%" scrolling="no" height="100%" 28 <iframe id="login" frameborder="0" width="100%" scrolling="no" height="100%"
29 src="chrome://remotingresources/gaialogin" style="display:none" 29 src="chrome://remotingresources/gaialogin" style="display:none"
30 tabindex="-1"></iframe> 30 tabindex="-1"></iframe>
31 <iframe id="done" frameborder="0" width="100%" scrolling="no" height="100%" 31 <iframe id="done" frameborder="0" width="100%" scrolling="no" height="100%"
32 src="chrome://remotingresources/setupdone" style="display:none" 32 src="chrome://remotingresources/setupdone" style="display:none"
33 tabindex="-1"></iframe> 33 tabindex="-1"></iframe>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW
« no previous file with comments | « chrome/browser/remoting/resources/remoting_setup_done.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698