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> |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
62 <script src="card_slider.js"></script> | 62 <script src="card_slider.js"></script> |
63 <script src="grabber.js"></script> | 63 <script src="grabber.js"></script> |
64 <script src="nav_dot.js"></script> | 64 <script src="nav_dot.js"></script> |
65 <script src="new_tab.js"></script> | 65 <script src="new_tab.js"></script> |
66 <script src="recently_closed.js"></script> | 66 <script src="recently_closed.js"></script> |
67 <script src="touch_handler.js"></script> | 67 <script src="touch_handler.js"></script> |
68 </head> | 68 </head> |
69 | 69 |
70 <body> | 70 <body> |
71 <div id="notification" class="inactive"> | 71 <div id="notification-container" class="inactive" hidden> |
72 <span></span> | 72 <div id="notification"> |
73 <div id="notificationLinks"></div> | 73 <span></span> |
74 <button class="close-button"></button> | 74 <div id="notificationLinks"></div> |
| 75 <button class="close-button"></button> |
| 76 </div> |
75 </div> | 77 </div> |
76 | 78 |
77 <div id="card-slider-frame"> | 79 <div id="card-slider-frame"> |
78 <button id="page-switcher-start" class="page-switcher" hidden>‹</button> | 80 <button id="page-switcher-start" class="page-switcher" hidden>‹</button> |
79 <div id="page-list"></div> | 81 <div id="page-list"></div> |
80 <button id="page-switcher-end" class="page-switcher" hidden>›</button> | 82 <button id="page-switcher-end" class="page-switcher" hidden>›</button> |
81 <div id="attribution"> | 83 <div id="attribution"> |
82 <span i18n-content="attributionintro"></span> | 84 <span i18n-content="attributionintro"></span> |
83 <img id="attribution-img"> | 85 <img id="attribution-img"> |
84 </div> | 86 </div> |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 </div> | 146 </div> |
145 | 147 |
146 <!-- Bookmarks Import Data Link --> | 148 <!-- Bookmarks Import Data Link --> |
147 <div id="bookmarks-import-data-link-template" | 149 <div id="bookmarks-import-data-link-template" |
148 class="bookmarks-import-data-link-wrapper" hidden> | 150 class="bookmarks-import-data-link-wrapper" hidden> |
149 <a href="chrome://settings/importData" | 151 <a href="chrome://settings/importData" |
150 i18n-content="importDataLinkTitle" class="link-color"></a> | 152 i18n-content="importDataLinkTitle" class="link-color"></a> |
151 </div> | 153 </div> |
152 | 154 |
153 </html> | 155 </html> |
OLD | NEW |