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

Side by Side Diff: chrome/browser/resources/md_bookmarks/bookmarks.html

Issue 2907083002: MD Bookmarks: Vulcanize page to reduce load time (Closed)
Patch Set: Fix Created 3 years, 6 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="utf8"> 4 <meta charset="utf8">
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 <link rel="import" href="chrome://resources/html/load_time_data.html">
9 <script src="chrome://bookmarks/strings.js"></script>
10 <link rel="import" href="chrome://bookmarks/app.html">
11 <style> 8 <style>
12 html, 9 html,
13 body { 10 body {
14 background: var(--md-background-color); 11 background: var(--md-background-color);
15 height: 100%; 12 height: 100%;
16 margin: 0; 13 margin: 0;
17 } 14 }
18 </style> 15 </style>
19 </head> 16 </head>
20 <body> 17 <body>
21 <bookmarks-app></bookmarks-app> 18 <bookmarks-app></bookmarks-app>
19
20 <link rel="import" href="chrome://resources/html/load_time_data.html">
21 <script src="chrome://bookmarks/strings.js"></script>
22 <link rel="import" href="chrome://bookmarks/app.html">
calamity 2017/05/29 07:26:51 Why does this have to move?
tsergeant 2017/05/30 00:35:51 It doesn't make much difference now, but putting t
22 </body> 23 </body>
23 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698