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

Side by Side Diff: chrome/browser/resources/inline_login/inline_login.html

Issue 880313002: webui: add [lang] attribute to <html> element on all webui pages so (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cros Created 5 years, 10 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <title i18n-content="title"></title> 4 <title i18n-content="title"></title>
5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 6 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
7 <link rel="stylesheet" href="chrome://chrome-signin/inline_login.css"> 7 <link rel="stylesheet" href="chrome://chrome-signin/inline_login.css">
8 <script src="chrome://resources/js/cr.js"></script> 8 <script src="chrome://resources/js/cr.js"></script>
9 <script src="chrome://resources/js/cr/event_target.js"></script> 9 <script src="chrome://resources/js/cr/event_target.js"></script>
10 <script src="chrome://resources/js/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/util.js"></script> 11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://chrome-signin/gaia_auth_host.js"></script> 12 <script src="chrome://chrome-signin/gaia_auth_host.js"></script>
13 <script src="chrome://chrome-signin/inline_login.js"></script> 13 <script src="chrome://chrome-signin/inline_login.js"></script>
14 <script src="chrome://chrome-signin/strings.js"></script> 14 <script src="chrome://chrome-signin/strings.js"></script>
15 </head> 15 </head>
16 <body> 16 <body>
17 <div id="contents" class="loading"> 17 <div id="contents" class="loading">
18 <iframe id="signin-frame" name="signin-frame" frameborder="0" 18 <iframe id="signin-frame" name="signin-frame" frameborder="0"
19 scrolling="no"></iframe> 19 scrolling="no"></iframe>
20 <div id="spinner-container"> 20 <div id="spinner-container">
21 <div class="spinner"></div> 21 <div class="spinner"></div>
22 </div> 22 </div>
23 </div> 23 </div>
24 <script src="chrome://resources/js/i18n_template2.js"></script> 24 <script src="chrome://resources/js/i18n_template2.js"></script>
25 </body> 25 </body>
26 </html> 26 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/identity_internals.html ('k') | chrome/browser/resources/inline_login/new_inline_login.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698