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