| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> | 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf8"> | 4 <meta charset="utf8"> |
| 5 <title>$i18n{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 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> |
| 9 | 9 |
| 10 <style> | 10 <style> |
| 11 html, | 11 html, |
| 12 body { | 12 body { |
| 13 height: 100%; | 13 height: 100%; |
| 14 margin: 0; | 14 margin: 0; |
| 15 } | 15 } |
| 16 | 16 |
| 17 body { | 17 body { |
| 18 background: var(--md-background-color); | 18 background: var(--md-background-color); |
| 19 cursor: default; |
| 19 } | 20 } |
| 20 | 21 |
| 21 /* Minimal styling required to display app shim. */ | 22 /* Minimal styling required to display app shim. */ |
| 22 .loading history-app { | 23 .loading history-app { |
| 23 visibility: hidden; | 24 visibility: hidden; |
| 24 } | 25 } |
| 25 | 26 |
| 26 #app-shim { | 27 #app-shim { |
| 27 display: none; | 28 display: none; |
| 28 } | 29 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 <link rel="import" href="chrome://resources/html/util.html"> | 83 <link rel="import" href="chrome://resources/html/util.html"> |
| 83 <link rel="import" href="chrome://resources/html/load_time_data.html"> | 84 <link rel="import" href="chrome://resources/html/load_time_data.html"> |
| 84 <link rel="import" href="chrome://history/constants.html"> | 85 <link rel="import" href="chrome://history/constants.html"> |
| 85 <script src="chrome://history/strings.js"></script> | 86 <script src="chrome://history/strings.js"></script> |
| 86 <script src="chrome://history/history.js"></script> | 87 <script src="chrome://history/history.js"></script> |
| 87 | 88 |
| 88 <link rel="import" href="chrome://history/app.html" async id="bundle"> | 89 <link rel="import" href="chrome://history/app.html" async id="bundle"> |
| 89 </body> | 90 </body> |
| 90 | 91 |
| 91 </html> | 92 </html> |
| OLD | NEW |