| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 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_md.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 7 <link rel="import" href="chrome://resources/html/md_shared_styles_classes.html
"> |
| 7 <style> | 8 <style> |
| 8 html { | |
| 9 background: rgb(236, 239, 241); | |
| 10 } | |
| 11 | |
| 12 html, | 9 html, |
| 13 body { | 10 body { |
| 14 height: 100%; | 11 height: 100%; |
| 15 } | 12 } |
| 16 | 13 |
| 17 body { | 14 body { |
| 18 display: flex; | 15 display: flex; |
| 19 margin: 0; | 16 margin: 0; |
| 20 } | 17 } |
| 21 </style> | 18 </style> |
| 22 </head> | 19 </head> |
| 23 <body> | 20 <body class="md-webui-body"> |
| 24 <downloads-manager></downloads-manager> | 21 <downloads-manager></downloads-manager> |
| 25 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> | 22 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> |
| 26 <if expr="is_macosx"> | 23 <if expr="is_macosx"> |
| 27 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> | 24 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> |
| 28 <command id="find-command" shortcut="Meta-U+0046"><!-- Command+F --> | 25 <command id="find-command" shortcut="Meta-U+0046"><!-- Command+F --> |
| 29 </if> | 26 </if> |
| 30 <if expr="not is_macosx"> | 27 <if expr="not is_macosx"> |
| 31 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> | 28 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> |
| 32 <command id="find-command" shortcut="Ctrl-U+0046"><!-- Ctrl+F --> | 29 <command id="find-command" shortcut="Ctrl-U+0046"><!-- Ctrl+F --> |
| 33 </if> | 30 </if> |
| 34 <link rel="import" href="chrome://resources/html/polymer.html"> | 31 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 35 <link rel="import" href="chrome://downloads/i18n_setup.html"> | 32 <link rel="import" href="chrome://downloads/i18n_setup.html"> |
| 36 <link rel="import" href="chrome://downloads/manager.html"> | 33 <link rel="import" href="chrome://downloads/manager.html"> |
| 37 <!-- i18n_template.html actually does i18n-* attribute substitutions. | 34 <!-- i18n_template.html actually does i18n-* attribute substitutions. |
| 38 It should be imported last and only once. TODO(dbeam): figure out a good | 35 It should be imported last and only once. TODO(dbeam): figure out a good |
| 39 solution for each individual element to do this as well. --> | 36 solution for each individual element to do this as well. --> |
| 40 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 37 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 41 <script src="chrome://downloads/downloads.js"></script> | 38 <script src="chrome://downloads/downloads.js"></script> |
| 42 </body> | 39 </body> |
| 43 </html> | 40 </html> |
| OLD | NEW |