| 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 themegravity:themegravity; | 5 themegravity:themegravity; |
| 6 bookmarkbarattached:bookmarkbarattached;" | 6 bookmarkbarattached:bookmarkbarattached;" |
| 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="chrome://resources/css/text_defaults.css"> |
| 23 <link rel="stylesheet" href="../../../../ui/webui/resources/css/bubble.css"> | 24 <link rel="stylesheet" href="../../../../ui/webui/resources/css/bubble.css"> |
| 24 <link rel="stylesheet" href="../../../../ui/webui/resources/css/expandable_bubbl
e.css"> | 25 <link rel="stylesheet" href="../../../../ui/webui/resources/css/expandable_bubbl
e.css"> |
| 25 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu.css"> | 26 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu.css"> |
| 26 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu_button.css"
> | 27 <link rel="stylesheet" href="../../../../ui/webui/resources/css/menu_button.css"
> |
| 27 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> | 28 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> |
| 28 <link rel="stylesheet" href="../../../../ui/webui/resources/css/widgets.css"> | 29 <link rel="stylesheet" href="../../../../ui/webui/resources/css/widgets.css"> |
| 29 <link rel="stylesheet" href="apps_page.css"> | 30 <link rel="stylesheet" href="apps_page.css"> |
| 30 <link rel="stylesheet" href="chrome://newtab/suggestions_page.css"> | 31 <link rel="stylesheet" href="chrome://newtab/suggestions_page.css"> |
| 31 <link rel="stylesheet" href="most_visited_page.css"> | 32 <link rel="stylesheet" href="most_visited_page.css"> |
| 32 <link rel="stylesheet" href="nav_dot.css"> | 33 <link rel="stylesheet" href="nav_dot.css"> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 63 <script src="trash.js"></script> | 64 <script src="trash.js"></script> |
| 64 <script src="page_list_view.js"></script> | 65 <script src="page_list_view.js"></script> |
| 65 <script src="page_switcher.js"></script> | 66 <script src="page_switcher.js"></script> |
| 66 | 67 |
| 67 <script src="nav_dot.js"></script> | 68 <script src="nav_dot.js"></script> |
| 68 <script src="new_tab.js"></script> | 69 <script src="new_tab.js"></script> |
| 69 <script src="recently_closed.js"></script> | 70 <script src="recently_closed.js"></script> |
| 70 <script src="other_sessions.js"></script> | 71 <script src="other_sessions.js"></script> |
| 71 </head> | 72 </head> |
| 72 | 73 |
| 73 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 74 <body> |
| 74 <div id="notification-container" class="inactive" hidden> | 75 <div id="notification-container" class="inactive" hidden> |
| 75 <div id="notification"> | 76 <div id="notification"> |
| 76 <span></span> | 77 <span></span> |
| 77 <div id="notificationLinks"></div> | 78 <div id="notificationLinks"></div> |
| 78 <button class="close-button custom-appearance" class="custom-appearance"> | 79 <button class="close-button custom-appearance" class="custom-appearance"> |
| 79 </button> | 80 </button> |
| 80 </div> | 81 </div> |
| 81 </div> | 82 </div> |
| 82 | 83 |
| 83 <div id="card-slider-frame"> | 84 <div id="card-slider-frame"> |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 </a> | 200 </a> |
| 200 </p> | 201 </p> |
| 201 </div> | 202 </div> |
| 202 | 203 |
| 203 </div> | 204 </div> |
| 204 | 205 |
| 205 <!-- This is used to measure text in the current locale. It is not visible. --> | 206 <!-- This is used to measure text in the current locale. It is not visible. --> |
| 206 <div id="fontMeasuringDiv"></div> | 207 <div id="fontMeasuringDiv"></div> |
| 207 | 208 |
| 208 </html> | 209 </html> |
| OLD | NEW |