OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html class="starting-up" i18n-values="dir:textdirection; | 2 <html class="starting-up" i18n-values="dir:textdirection; |
3 hasattribution:hasattribution; | 3 hasattribution:hasattribution; |
4 themegravity:themegravity; | 4 themegravity:themegravity; |
5 bookmarkbarattached:bookmarkbarattached; | 5 bookmarkbarattached:bookmarkbarattached; |
6 lang:language"> | 6 lang:language"> |
7 <head> | 7 <head> |
8 <meta charset="utf-8"> | 8 <meta charset="utf-8"> |
9 <title i18n-content="title"></title> | 9 <title i18n-content="title"></title> |
10 <!-- Don't scale the viewport in either portrait or landscape mode. | 10 <!-- Don't scale the viewport in either portrait or landscape mode. |
11 Note that this means apps will be reflowed when rotated (like iPad). | 11 Note that this means apps will be reflowed when rotated (like iPad). |
12 If we wanted to maintain position we could remove 'maximum-scale' so | 12 If we wanted to maintain position we could remove 'maximum-scale' so |
13 that we'd zoom out in portrait mode, but then there would be a bunch | 13 that we'd zoom out in portrait mode, but then there would be a bunch |
14 of unusable space at the bottom. | 14 of unusable space at the bottom. |
15 --> | 15 --> |
16 <meta name="viewport" | 16 <meta name="viewport" |
17 content="user-scalable=no, width=device-width, maximum-scale=1.0"> | 17 content="user-scalable=no, width=device-width, maximum-scale=1.0"> |
18 | 18 |
19 <!-- It's important that this be the first script loaded. --> | 19 <!-- It's important that this be the first script loaded. --> |
20 <script src="logging.js"></script> | 20 <script src="logging.js"></script> |
21 | 21 |
22 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 22 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
23 <link rel="stylesheet" href="../../../../ui/webui/resources/css/bubble.css"> | 23 <link rel="stylesheet" href="../../../../ui/webui/resources/css/bubble.css"> |
24 <link rel="stylesheet" href="../../../../ui/webui/resources/css/expandable_bubbl
e.css"> | 24 <link rel="stylesheet" href="../../../../ui/webui/resources/css/expandable_bubbl
e.css"> |
25 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu.css"> | 25 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu.css"> |
26 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu_button.css"
> | 26 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu_button.css"
> |
27 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> | 27 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> |
28 <link rel="stylesheet" href="../../../../ui/webui/resources/css/widgets.css"> | 28 <link rel="stylesheet" href="../../../../ui/webui/resources/css/widgets.css"> |
29 <link rel="stylesheet" href="apps_page.css"> | 29 <link rel="stylesheet" href="apps_page.css"> |
30 <link rel="stylesheet" href="chrome://newtab/suggestions_page.css"> | |
31 <link rel="stylesheet" href="most_visited_page.css"> | 30 <link rel="stylesheet" href="most_visited_page.css"> |
32 <link rel="stylesheet" href="nav_dot.css"> | 31 <link rel="stylesheet" href="nav_dot.css"> |
33 <link rel="stylesheet" href="new_tab.css"> | 32 <link rel="stylesheet" href="new_tab.css"> |
34 <link rel="stylesheet" href="footer_menu.css"> | 33 <link rel="stylesheet" href="footer_menu.css"> |
35 <link rel="stylesheet" href="tile_page.css"> | 34 <link rel="stylesheet" href="tile_page.css"> |
36 <link id="themecss" rel="stylesheet"> | 35 <link id="themecss" rel="stylesheet"> |
37 | 36 |
38 <script src="../../../../ui/webui/resources/js/action_link.js"></script> | 37 <script src="../../../../ui/webui/resources/js/action_link.js"></script> |
39 <script src="../../../../ui/webui/resources/js/event_tracker.js"></script> | 38 <script src="../../../../ui/webui/resources/js/event_tracker.js"></script> |
40 <script src="../../../../ui/webui/resources/js/parse_html_subset.js"></script> | 39 <script src="../../../../ui/webui/resources/js/parse_html_subset.js"></script> |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 </a> | 192 </a> |
194 </p> | 193 </p> |
195 </div> | 194 </div> |
196 | 195 |
197 </div> | 196 </div> |
198 | 197 |
199 <!-- This is used to measure text in the current locale. It is not visible. --> | 198 <!-- This is used to measure text in the current locale. It is not visible. --> |
200 <div id="fontMeasuringDiv"></div> | 199 <div id="fontMeasuringDiv"></div> |
201 | 200 |
202 </html> | 201 </html> |
OLD | NEW |