Chromium Code Reviews| Index: chrome/browser/resources/downloads/downloads.html |
| diff --git a/chrome/browser/resources/downloads/downloads.html b/chrome/browser/resources/downloads/downloads.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a4780f013b4aee249dd8df181eec28a3f8a2d04a |
| --- /dev/null |
| +++ b/chrome/browser/resources/downloads/downloads.html |
| @@ -0,0 +1,43 @@ |
| +<!DOCTYPE HTML> |
| +<html i18n-values="dir:textdirection;"> |
| +<head> |
| +<meta charset="utf-8"> |
|
Dan Beam
2012/03/12 20:11:18
nit: meta isn't indented
James Hawkins
2012/03/12 20:14:41
Done.
|
| + <title i18n-content="title"></title> |
| + <link rel="icon" href="chrome://theme/IDR_DOWNLOADS_FAVICON"> |
| + <link rel="stylesheet" href="../old_webui.css"> |
| + <link rel="stylesheet" href="../shared/css/chrome_shared.css"> |
| + <link rel="stylesheet" href="../shared/css/widgets.css"> |
| + <link rel="stylesheet" href="downloads.css"> |
| + <script src="chrome://resources/js/local_strings.js"></script> |
| + <script src="chrome://resources/js/util.js"></script> |
| + <script src="chrome://downloads/downloads.js"></script> |
| +</head> |
| +<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| + <div class="header"> |
| + <a id="search-link" href=""> |
| + <img src="../shared/images/downloads_section.png" |
| + width="67" height="67" class="logo" border="0"> |
| + </a> |
| + <form id="search-form" method="post" action="" class="form"> |
| + <input type="text" name="term" id="term"> |
| + <input id="search-submit" type="submit" name="submit" |
| + i18n-values="value:searchbutton"> |
| + </form> |
| + </div> |
| + <div class="main"> |
| + <div id="downloads-summary"> |
| + <span id="downloads-summary-text" i18n-content="downloads"></span> |
| + <span id="downloads-actions"> |
| + <a id="open-downloads-folder" href="" |
| + i18n-content="open_downloads_folder"> |
| + </a> |
| + <a id="clear-all" href="" i18n-content="clear_all"></a> |
| + </span> |
| + </div> |
| + <div id="downloads-display"></div> |
| + </div> |
| + <script src="chrome://downloads/strings.js"></script> |
| + <script src="chrome://resources/js/i18n_template.js"></script> |
| + <script src="chrome://resources/js/i18n_process.js"></script> |
| +</body> |
| +</html> |