Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: chrome/browser/resources/md_downloads/downloads.html

Issue 2361973002: MD Downloads: preload bold Roboto in a better way (Closed)
Patch Set: !chromeos Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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="utf-8"> 4 <meta charset="utf-8">
5 <title>$i18n{title}</title> 5 <title>$i18n{title}</title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
7 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> 7 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
8 <style> 8 <style>
9 html { 9 html {
10 background: var(--md-background-color); 10 background: var(--md-background-color);
11 } 11 }
12 12
13 html, 13 html,
14 body { 14 body {
15 height: 100%; 15 height: 100%;
16 } 16 }
17 17
18 body { 18 body {
19 display: flex; 19 display: flex;
20 margin: 0; 20 margin: 0;
21 } 21 }
22 </style> 22 </style>
23 </head> 23 </head>
24 <body> 24 <body>
25 <b style="position: fixed; visibility: hidden; top: -9em">hack</b>
26 <downloads-manager></downloads-manager> 25 <downloads-manager></downloads-manager>
27 <if expr="is_macosx"> 26 <if expr="is_macosx">
28 <command id="clear-all-command" shortcut="Alt|c Alt|ç"> 27 <command id="clear-all-command" shortcut="Alt|c Alt|ç">
29 <command id="undo-command" shortcut="Meta|z"> 28 <command id="undo-command" shortcut="Meta|z">
30 <command id="find-command" shortcut="Meta|f"> 29 <command id="find-command" shortcut="Meta|f">
31 </if> 30 </if>
32 <if expr="not is_macosx"> 31 <if expr="not is_macosx">
33 <command id="clear-all-command" shortcut="Alt|c"> 32 <command id="clear-all-command" shortcut="Alt|c">
34 <command id="undo-command" shortcut="Ctrl|z"> 33 <command id="undo-command" shortcut="Ctrl|z">
35 <command id="find-command" shortcut="Ctrl|f"> 34 <command id="find-command" shortcut="Ctrl|f">
36 </if> 35 </if>
36 <link rel="import" href="chrome://resources/html/cr.html">
37 <link rel="import" href="chrome://resources/html/polymer.html"> 37 <link rel="import" href="chrome://resources/html/polymer.html">
38 <link rel="import" href="chrome://downloads/i18n_setup.html"> 38 <link rel="import" href="chrome://downloads/i18n_setup.html">
39 <link rel="import" href="chrome://downloads/manager.html"> 39 <link rel="import" href="chrome://downloads/manager.html">
40 <script src="chrome://downloads/downloads.js"></script> 40 <script src="chrome://downloads/downloads.js"></script>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/crisper.js ('k') | chrome/browser/resources/md_downloads/downloads.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698