| 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="utf8"> | 4 <meta charset="utf8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 | 6 |
| 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 8 | 8 |
| 9 <style> | 9 <style> |
| 10 html, | 10 html, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 <body> | 33 <body> |
| 34 <history-toolbar class="paper-header" id="toolbar"></history-toolbar> | 34 <history-toolbar class="paper-header" id="toolbar"></history-toolbar> |
| 35 <history-list id="history-list"></history-list> | 35 <history-list id="history-list"></history-list> |
| 36 | 36 |
| 37 <link rel="import" href="chrome://resources/html/polymer_config.html"> | 37 <link rel="import" href="chrome://resources/html/polymer_config.html"> |
| 38 <link rel="import" href="chrome://resources/html/cr.html"> | 38 <link rel="import" href="chrome://resources/html/cr.html"> |
| 39 <link rel="import" href="chrome://resources/html/util.html"> | 39 <link rel="import" href="chrome://resources/html/util.html"> |
| 40 <link rel="import" href="chrome://resources/html/load_time_data.html"> | 40 <link rel="import" href="chrome://resources/html/load_time_data.html"> |
| 41 <script src="strings.js"></script> | 41 <script src="strings.js"></script> |
| 42 | 42 |
| 43 <link rel="import" href="chrome://history/constants.html"> |
| 43 <link rel="import" href="chrome://history/history_list.html"> | 44 <link rel="import" href="chrome://history/history_list.html"> |
| 44 <link rel="import" href="chrome://history/history_toolbar.html"> | 45 <link rel="import" href="chrome://history/history_toolbar.html"> |
| 45 | 46 |
| 46 <script src="history.js"></script> | 47 <script src="history.js"></script> |
| 47 | 48 |
| 48 <!-- Prepare strings and perform i18n substitutions. --> | 49 <!-- Prepare strings and perform i18n substitutions. --> |
| 49 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 50 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 50 </body> | 51 </body> |
| 51 | 52 |
| 52 </html> | 53 </html> |
| OLD | NEW |