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

Side by Side Diff: chrome/browser/resources/chromeos/choose_mobile_network.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 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 7 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
8 <link rel="stylesheet" href="mobile_dialogs.css"> 8 <link rel="stylesheet" href="mobile_dialogs.css">
9 <link rel="stylesheet" href="choose_mobile_network.css"> 9 <link rel="stylesheet" href="choose_mobile_network.css">
10 <script src="chrome://resources/js/cr.js"></script> 10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/event_target.js"></script> 11 <script src="chrome://resources/js/cr/event_target.js"></script>
12 <script src="chrome://resources/js/load_time_data.js"></script> 12 <script src="chrome://resources/js/load_time_data.js"></script>
(...skipping 21 matching lines...) Expand all
34 <button id="cancel" i18n-content="cancel"></button> 34 <button id="cancel" i18n-content="cancel"></button>
35 <button id="connect" i18n-content="connect" ></button> 35 <button id="connect" i18n-content="connect" ></button>
36 </div> 36 </div>
37 </div> 37 </div>
38 </div> 38 </div>
39 </div> 39 </div>
40 </div> 40 </div>
41 <script src="chrome://resources/js/i18n_template2.js"></script> 41 <script src="chrome://resources/js/i18n_template2.js"></script>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698