OLD | NEW |
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 Loading... |
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> |
OLD | NEW |