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

Side by Side Diff: chrome/browser/resources/app_list/start_page.html

Issue 186483004: Add a skeleton Start Page to the experimental app list. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ares_change_experimental_animation
Patch Set: Created 6 years, 9 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 i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="chrome://app-list/start_page.css"> 5 <link rel="stylesheet" href="chrome://app-list/start_page.css">
6 <script src="chrome://resources/js/load_time_data.js"></script> 6 <script src="chrome://resources/js/load_time_data.js"></script>
7 <script src="chrome://resources/js/cr.js"></script> 7 <script src="chrome://resources/js/cr.js"></script>
8 <script src="chrome://resources/js/cr/event_target.js"></script> 8 <script src="chrome://resources/js/cr/event_target.js"></script>
9 <script src="chrome://resources/js/cr/ui.js"></script> 9 <script src="chrome://resources/js/cr/ui.js"></script>
10 <script src="chrome://resources/js/util.js"></script> 10 <script src="chrome://resources/js/util.js"></script>
11 <script src="chrome://app-list/strings.js"></script> 11 <script src="chrome://app-list/strings.js"></script>
12 <script src="chrome://app-list/start_page.js"></script> 12 <script src="chrome://app-list/start_page.js"></script>
13 </head> 13 </head>
14 14
15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
16 <div id="logo-wrapper">
17 <img id="logo" src="chrome://app-list/images/2x/google_logo.png">
tapted 2014/03/10 02:41:54 is this the typical way to do it? I think to prope
calamity 2014/03/14 07:50:02 It seems to be the way that the local ntp does it.
xiyuan 2014/03/14 17:00:54 I agree with Trent that we should follow the -webk
18 </div>
16 <div id="start-page"></div> 19 <div id="start-page"></div>
17 <script src="chrome://resources/js/i18n_template2.js"></script> 20 <script src="chrome://resources/js/i18n_template2.js"></script>
18 </body> 21 </body>
19 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698