OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- |
| 3 Copyright 2013 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. |
| 6 --> |
2 <html> | 7 <html> |
3 <head> | 8 <head> |
4 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
5 <title i18n-content="domDistillerTitle"></title> | 10 <title i18n-content="domDistillerTitle"></title> |
6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> | 11 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> |
7 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> | 12 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> |
8 <link rel="stylesheet" href="about_dom_distiller.css"> | 13 <link rel="stylesheet" href="about_dom_distiller.css"> |
9 | 14 |
10 <script src="chrome://resources/js/cr.js"></script> | 15 <script src="chrome://resources/js/cr.js"></script> |
11 <script src="chrome://resources/js/util.js"></script> | 16 <script src="chrome://resources/js/util.js"></script> |
12 <script src="chrome://resources/js/load_time_data.js"></script> | 17 <script src="chrome://resources/js/load_time_data.js"></script> |
13 <script src="chrome://resources/js/cr/ui/overlay.js"></script> | 18 <script src="chrome://resources/js/cr/ui/overlay.js"></script> |
14 <script src="about_dom_distiller.js"></script> | 19 <script src="about_dom_distiller.js"></script> |
15 <script src="strings.js"></script> | 20 <script src="strings.js"></script> |
16 </head> | 21 </head> |
17 <body> | 22 <body> |
18 <header> | 23 <div id="mainContent"> |
19 <h1 i18n-content="domDistillerTitle"></h1> | 24 <div id="list-section"> |
20 </header> | 25 <header> |
21 <div id="entries-section"> | 26 <h1 id="listTitle" i18n-content="domDistillerTitle"></h1> |
22 <div id="entries-list"></div> | 27 </header> |
| 28 <div id="add-entry"> |
| 29 <form> |
| 30 <label for="article_url" i18n-content="addArticleUrl"></label> |
| 31 <input type="text" id="article_url" /> |
| 32 <br/> |
| 33 <button id="addbutton" i18n-content="addArticleAddButtonLabel"></butto
n> |
| 34 </form> |
| 35 <span id="add-entry-error" i18n-content="addArticleFailedLabel"></span> |
| 36 </div> |
| 37 <div id="update-list"> |
| 38 <form> |
| 39 <button id="refreshbutton" i18n-content="refreshButtonLabel"></button> |
| 40 <span id="entries-list-loading" i18n-content="loadingEntries"></span> |
| 41 </form> |
| 42 </div> |
| 43 <ul id="entries-list"> |
| 44 </ul> |
| 45 </div> |
23 </div> | 46 </div> |
24 <script src="chrome://resources/js/i18n_template2.js"></script> | 47 <script src="chrome://resources/js/i18n_template2.js"></script> |
25 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 48 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
26 </body> | 49 </body> |
27 </html> | 50 </html> |
OLD | NEW |