| <!doctype html> |
| <html i18n-values="dir:textdirection;lang:language"> |
| <head> |
| <meta charset="utf-8"> |
| <title i18n-content="title"></title> |
| <link rel="stylesheet" href="chrome://resources/css/roboto.css"> |
| <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| <style> |
| html { |
| background: rgb(236, 239, 241); |
| } |
| |
| html, |
| body { |
| height: 100%; |
| } |
| |
| body { |
| display: flex; |
| font-family: Roboto; |
| font-size: 81.25%; |
| margin: 0; |
| } |
| </style> |
| </head> |
| <body> |
| <downloads-manager></downloads-manager> |
| <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> |
| <if expr="is_macosx"> |
| <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> |
| <command id="find-command" shortcut="Meta-U+0046"><!-- Command+F --> |
| </if> |
| <if expr="not is_macosx"> |
| <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> |
| <command id="find-command" shortcut="Ctrl-U+0046"><!-- Ctrl+F --> |
| </if> |
| <link rel="import" href="chrome://resources/html/polymer_config.html"> |
| <link rel="import" href="chrome://downloads/i18n_setup.html"> |
| <link rel="import" href="chrome://downloads/manager.html"> |
| <!-- i18n_template.html actually does i18n-* attribute substitutions. |
| It should be imported last and only once. TODO(dbeam): figure out a good |
| solution for each individual element to do this as well. --> |
| <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| <script src="chrome://downloads/downloads.js"></script> |
| </body> |
| </html> |