| 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 class="starting-up"> | 7 class="starting-up"> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <title i18n-content="title"></title> | 10 <title i18n-content="title"></title> |
| 11 <!-- Don't scale the viewport in either portrait or landscape mode. | 11 <!-- Don't scale the viewport in either portrait or landscape mode. |
| 12 Note that this means apps will be reflowed when rotated (like iPad). | 12 Note that this means apps will be reflowed when rotated (like iPad). |
| 13 If we wanted to maintain position we could remove 'maximum-scale' so | 13 If we wanted to maintain position we could remove 'maximum-scale' so |
| 14 that we'd zoom out in portrait mode, but then there would be a bunch | 14 that we'd zoom out in portrait mode, but then there would be a bunch |
| 15 of unusable space at the bottom. | 15 of unusable space at the bottom. |
| 16 --> | 16 --> |
| 17 <meta name="viewport" | 17 <meta name="viewport" |
| 18 content="user-scalable=no, width=device-width, maximum-scale=1.0"> | 18 content="user-scalable=no, width=device-width, maximum-scale=1.0"> |
| 19 | 19 |
| 20 <!-- It's important that this be the first script loaded. --> | 20 <!-- It's important that this be the first script loaded. --> |
| 21 <script src="logging.js"></script> | 21 <script src="logging.js"></script> |
| 22 | 22 |
| 23 <link rel="stylesheet" href="../shared/css/button.css"> | 23 <link rel="stylesheet" href="../shared/css/button.css"> |
| 24 <link rel="stylesheet" href="../shared/css/bubble.css"> | 24 <link rel="stylesheet" href="../shared/css/bubble.css"> |
| 25 <link rel="stylesheet" href="../shared/css/expandable_bubble.css"> | 25 <link rel="stylesheet" href="../shared/css/expandable_bubble.css"> |
| 26 <link rel="stylesheet" href="../shared/css/menu.css"> | 26 <link rel="stylesheet" href="../shared/css/menu.css"> |
| 27 <link rel="stylesheet" href="../shared/css/trash.css"> | 27 <link rel="stylesheet" href="../shared/css/trash.css"> |
| 28 <link rel="stylesheet" href="apps_page.css"> | 28 <link rel="stylesheet" href="apps_page.css"> |
| 29 <link rel="stylesheet" href="chrome://newtab/suggestions_page.css"> |
| 29 <link rel="stylesheet" href="most_visited_page.css"> | 30 <link rel="stylesheet" href="most_visited_page.css"> |
| 30 <link rel="stylesheet" href="nav_dot.css"> | 31 <link rel="stylesheet" href="nav_dot.css"> |
| 31 <link rel="stylesheet" href="new_tab.css"> | 32 <link rel="stylesheet" href="new_tab.css"> |
| 32 <link rel="stylesheet" href="recently_closed.css"> | 33 <link rel="stylesheet" href="recently_closed.css"> |
| 33 <link rel="stylesheet" href="tile_page.css"> | 34 <link rel="stylesheet" href="tile_page.css"> |
| 34 <link id="themecss" rel="stylesheet"> | 35 <link id="themecss" rel="stylesheet"> |
| 35 | 36 |
| 36 <script src="../shared/js/event_tracker.js"></script> | 37 <script src="../shared/js/event_tracker.js"></script> |
| 37 <script src="../shared/js/local_strings.js"></script> | 38 <script src="../shared/js/local_strings.js"></script> |
| 38 <script src="../shared/js/parse_html_subset.js"></script> | 39 <script src="../shared/js/parse_html_subset.js"></script> |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 <div></div> | 182 <div></div> |
| 182 </div> | 183 </div> |
| 183 </a> | 184 </a> |
| 184 | 185 |
| 185 </div> | 186 </div> |
| 186 | 187 |
| 187 <!-- This is used to measure text in the current locale. It is not visible. --> | 188 <!-- This is used to measure text in the current locale. It is not visible. --> |
| 188 <div id="fontMeasuringDiv"></div> | 189 <div id="fontMeasuringDiv"></div> |
| 189 | 190 |
| 190 </html> | 191 </html> |
| OLD | NEW |