OLD | NEW |
---|---|
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <!-- | 2 <!-- |
3 ------ | 3 ------ |
4 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2013 The Chromium Authors. All rights reserved. |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 <html i18n-values="dir:textdirection;"> | 8 <html i18n-values="dir:textdirection;"> |
9 <head> | 9 <head> |
10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
11 <title>Wallpaper Picker</title> | 11 <title>Wallpaper Picker</title> |
12 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
12 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/widgets.css "> | 13 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/widgets.css "> |
13 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/menu.css">< /link> | 14 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/menu.css">< /link> |
14 | 15 |
15 <link rel="stylesheet" href="css/wallpaper_manager.css"> | 16 <link rel="stylesheet" href="css/wallpaper_manager.css"> |
16 <script src="js/main_scripts.js"></script> | 17 <script src="js/main_scripts.js"></script> |
17 <if expr="False"> | 18 <if expr="False"> |
18 <!-- This file has not been flattened, load individual scripts. | 19 <!-- This file has not been flattened, load individual scripts. |
19 Keep the list in sync with js/main_scripts.js. --> | 20 Keep the list in sync with js/main_scripts.js. --> |
20 <script src="../../../../../ui/webui/resources/js/cr.js"></script> | 21 <script src="../../../../../ui/webui/resources/js/cr.js"></script> |
21 <script src="../../../../../ui/webui/resources/js/event_tracker.js"></script > | 22 <script src="../../../../../ui/webui/resources/js/event_tracker.js"></script > |
(...skipping 20 matching lines...) Expand all Loading... | |
42 <script src="js/constants.js"></script> | 43 <script src="js/constants.js"></script> |
43 <script src="js/util.js"></script> | 44 <script src="js/util.js"></script> |
44 <script src="js/progress_manager.js"></script> | 45 <script src="js/progress_manager.js"></script> |
45 <script src="js/wallpaper_directories.js"></script> | 46 <script src="js/wallpaper_directories.js"></script> |
46 <script src="js/wallpaper_images_grid.js"></script> | 47 <script src="js/wallpaper_images_grid.js"></script> |
47 <script src="js/wallpaper_manager.js"></script> | 48 <script src="js/wallpaper_manager.js"></script> |
48 <script src="js/main.js"></script> | 49 <script src="js/main.js"></script> |
49 </if> | 50 </if> |
50 </head> | 51 </head> |
51 <body i18n-values=".style.fontFamily:webFontFamily; | 52 <body i18n-values=".style.fontFamily:webFontFamily; |
52 .style.fontSize:webFontSize"> | 53 .style.fontSize:webFontSize"> |
Dan Beam
2014/12/10 19:49:24
is this page supposed to be intentionally differen
jungshik at Google
2014/12/10 20:14:14
They're using the same IDS_WEB_FONT_FAMILY/SIZE, b
xdai1
2014/12/11 02:59:22
Removed webFontFamily and webFontSize here. I'll m
| |
53 <commands> | 54 <commands> |
54 <command id="delete" i18n-values="label:deleteCommandLabel" | 55 <command id="delete" i18n-values="label:deleteCommandLabel" |
55 shortcut="U+007F"></command> | 56 shortcut="U+007F"></command> |
56 </commands> | 57 </commands> |
57 | 58 |
58 <menu id="wallpaper-context-menu" class="chrome-menu" visibleif="custom"> | 59 <menu id="wallpaper-context-menu" class="chrome-menu" visibleif="custom"> |
59 <menuitem command="#delete"></menuitem> | 60 <menuitem command="#delete"></menuitem> |
60 </menu> | 61 </menu> |
61 | 62 |
62 <div id="error-container" class="overlay-container" hidden> | 63 <div id="error-container" class="overlay-container" hidden> |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
123 <div id="surprise-me" hidden> | 124 <div id="surprise-me" hidden> |
124 <div id="checkbox"></div> | 125 <div id="checkbox"></div> |
125 <span i18n-content="surpriseMeLabel"></span> | 126 <span i18n-content="surpriseMeLabel"></span> |
126 </div> | 127 </div> |
127 </div> | 128 </div> |
128 </div> | 129 </div> |
129 </div> | 130 </div> |
130 </div> | 131 </div> |
131 </body> | 132 </body> |
132 </html> | 133 </html> |
OLD | NEW |