| 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.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 7 <link rel="import" href="chrome://resources/html/polymer_config.html"> | 7 <link rel="import" href="chrome://resources/html/polymer_config.html"> |
| 8 <link rel="import" href="chrome://downloads/manager.html"> | 8 <link rel="import" href="chrome://downloads/manager.html"> |
| 9 <style> | 9 <style> |
| 10 html { | 10 html { |
| 11 background: #e6e6e6; | 11 background: #f2f2f2; |
| 12 } | 12 } |
| 13 | 13 |
| 14 html, | 14 html, |
| 15 body { | 15 body { |
| 16 height: 100%; | 16 height: 100%; |
| 17 } | 17 } |
| 18 | 18 |
| 19 body { | 19 body { |
| 20 display: flex; | 20 display: flex; |
| 21 font-size: 81.25%; /* Overrides text_defaults.css. */ | 21 font-size: 81.25%; /* Overrides text_defaults.css. */ |
| 22 margin: 0; | 22 margin: 0; |
| 23 } | 23 } |
| 24 </style> | 24 </style> |
| 25 </head> | 25 </head> |
| 26 <body> | 26 <body> |
| 27 <downloads-manager></downloads-manager> | 27 <downloads-manager></downloads-manager> |
| 28 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> | 28 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> |
| 29 <if expr="is_macosx"> | 29 <if expr="is_macosx"> |
| 30 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> | 30 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> |
| 31 </if> | 31 </if> |
| 32 <if expr="not is_macosx"> | 32 <if expr="not is_macosx"> |
| 33 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> | 33 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> |
| 34 </if> | 34 </if> |
| 35 <link rel="import" href="chrome://resources/html/load_time_data.html"> | 35 <link rel="import" href="chrome://resources/html/load_time_data.html"> |
| 36 <link rel="import" href="chrome://downloads/strings.html"> | 36 <link rel="import" href="chrome://downloads/strings.html"> |
| 37 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 37 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 38 </body> | 38 </body> |
| 39 </html> | 39 </html> |
| OLD | NEW |