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

Side by Side Diff: chrome/browser/resources/downloads/downloads.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/chrome_shared.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
7 <!-- This has to come after chrome_shared.css --> 7 <!-- This has to come after chrome_shared.css -->
8 <link rel="stylesheet" href="downloads.css"> 8 <link rel="stylesheet" href="downloads.css">
9 <script src="chrome://resources/js/action_link.js"></script> 9 <script src="chrome://resources/js/action_link.js"></script>
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/ui.js"></script> 11 <script src="chrome://resources/js/cr/ui.js"></script>
12 <script src="chrome://resources/js/cr/ui/command.js"></script> 12 <script src="chrome://resources/js/cr/ui/command.js"></script>
(...skipping 23 matching lines...) Expand all
36 <if expr="is_macosx"> 36 <if expr="is_macosx">
37 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> 37 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z -->
38 </if> 38 </if>
39 <if expr="not is_macosx"> 39 <if expr="not is_macosx">
40 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> 40 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z -->
41 </if> 41 </if>
42 <script src="chrome://downloads/strings.js"></script> 42 <script src="chrome://downloads/strings.js"></script>
43 <script src="chrome://resources/js/i18n_template2.js"></script> 43 <script src="chrome://resources/js/i18n_template2.js"></script>
44 </body> 44 </body>
45 </html> 45 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/domain_reliability_internals.html ('k') | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698