| 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{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, |
| 11 body { | 11 body { |
| 12 height: 100%; | 12 height: 100%; |
| 13 margin: 0; | 13 margin: 0; |
| 14 } | 14 } |
| 15 | 15 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 <script src="strings.js"></script> | 57 <script src="strings.js"></script> |
| 58 | 58 |
| 59 <link rel="import" href="chrome://history/constants.html"> | 59 <link rel="import" href="chrome://history/constants.html"> |
| 60 <link rel="import" href="chrome://history/history_list.html"> | 60 <link rel="import" href="chrome://history/history_list.html"> |
| 61 <link rel="import" href="chrome://history/history_toolbar.html"> | 61 <link rel="import" href="chrome://history/history_toolbar.html"> |
| 62 <link rel="import" href="chrome://history/synced_device_manager.html"> | 62 <link rel="import" href="chrome://history/synced_device_manager.html"> |
| 63 <link rel="import" href="chrome://history/side_bar.html"> | 63 <link rel="import" href="chrome://history/side_bar.html"> |
| 64 | 64 |
| 65 <script src="history.js"></script> | 65 <script src="history.js"></script> |
| 66 | 66 |
| 67 <!-- Prepare strings and perform i18n substitutions. --> | 67 <!-- |
| 68 Prepare strings and perform i18n substitutions. |
| 69 TODO(tsergeant): Remove once we are fully converted to |
| 70 ReplaceTemplateExpressions. It is currently only used for the <html> tag. |
| 71 --> |
| 68 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 72 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 69 </body> | 73 </body> |
| 70 | 74 |
| 71 </html> | 75 </html> |
| OLD | NEW |