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> |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 align-items: center; | 55 align-items: center; |
56 color: #b4b4b4; | 56 color: #b4b4b4; |
57 flex: 1; | 57 flex: 1; |
58 font-weight: 500; | 58 font-weight: 500; |
59 justify-content: center; | 59 justify-content: center; |
60 } | 60 } |
61 </style> | 61 </style> |
62 </head> | 62 </head> |
63 | 63 |
64 <body class="loading"> | 64 <body class="loading"> |
65 <history-app id="history-app"></history-app> | 65 <history-app></history-app> |
66 | 66 |
67 <div id="app-shim"> | 67 <div id="app-shim"> |
68 <span id="loading-toolbar">$i18n{title}</span> | 68 <span id="loading-toolbar">$i18n{title}</span> |
69 <span id="loading-message">$i18n{loading}</span> | 69 <span id="loading-message">$i18n{loading}</span> |
70 </div> | 70 </div> |
71 | 71 |
72 <if expr="is_macosx"> | 72 <if expr="is_macosx"> |
73 <command id="find-command" shortcut="Meta|f"> | 73 <command id="find-command" shortcut="Meta|f"> |
74 </if> | 74 </if> |
75 <if expr="not is_macosx"> | 75 <if expr="not is_macosx"> |
76 <command id="find-command" shortcut="Ctrl|f"> | 76 <command id="find-command" shortcut="Ctrl|f"> |
77 </if> | 77 </if> |
78 <command id="delete-command" shortcut="Delete Backspace"> | 78 <command id="delete-command" shortcut="Delete Backspace"> |
79 <command id="slash-command" shortcut="/"> | 79 <command id="slash-command" shortcut="/"> |
80 | 80 |
81 <link rel="import" href="chrome://resources/html/cr.html"> | 81 <link rel="import" href="chrome://resources/html/cr.html"> |
82 <link rel="import" href="chrome://resources/html/util.html"> | 82 <link rel="import" href="chrome://resources/html/util.html"> |
83 <link rel="import" href="chrome://resources/html/load_time_data.html"> | 83 <link rel="import" href="chrome://resources/html/load_time_data.html"> |
84 <link rel="import" href="chrome://history/constants.html"> | 84 <link rel="import" href="chrome://history/constants.html"> |
85 <script src="chrome://history/strings.js"></script> | 85 <script src="chrome://history/strings.js"></script> |
86 <script src="chrome://history/history.js"></script> | 86 <script src="chrome://history/history.js"></script> |
| 87 <link rel="import" href="chrome://history/app.html" async id="bundle"> |
87 | 88 |
88 <link rel="import" href="chrome://history/app.html" async id="bundle"> | |
89 </body> | 89 </body> |
90 | 90 |
91 </html> | 91 </html> |
OLD | NEW |