Chromium Code Reviews| 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. |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 59 <script src="tile_page.js"></script> | 59 <script src="tile_page.js"></script> |
| 60 <script src="apps_page.js"></script> | 60 <script src="apps_page.js"></script> |
| 61 <script src="dot_list.js"></script> | 61 <script src="dot_list.js"></script> |
| 62 <script src="most_visited_page.js"></script> | 62 <script src="most_visited_page.js"></script> |
| 63 <script src="trash.js"></script> | 63 <script src="trash.js"></script> |
| 64 <script src="page_list_view.js"></script> | 64 <script src="page_list_view.js"></script> |
| 65 <script src="page_switcher.js"></script> | 65 <script src="page_switcher.js"></script> |
| 66 | 66 |
| 67 <script src="nav_dot.js"></script> | 67 <script src="nav_dot.js"></script> |
| 68 <script src="new_tab.js"></script> | 68 <script src="new_tab.js"></script> |
| 69 <script src="recently_closed.js"></script> | |
| 70 <script src="other_sessions.js"></script> | 69 <script src="other_sessions.js"></script> |
| 71 </head> | 70 </head> |
| 72 | 71 |
| 73 <body> | 72 <body> |
| 74 <div id="notification-container" class="inactive" hidden> | 73 <div id="notification-container" class="inactive" hidden> |
| 75 <div id="notification"> | 74 <div id="notification"> |
| 76 <span></span> | 75 <span></span> |
| 77 <div id="notificationLinks"></div> | 76 <div id="notificationLinks"></div> |
| 78 <button class="close-button custom-appearance" class="custom-appearance"> | 77 <button class="close-button custom-appearance" class="custom-appearance"> |
| 79 </button> | 78 </button> |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 116 | 115 |
| 117 <ul id="dot-list"> | 116 <ul id="dot-list"> |
| 118 </ul> | 117 </ul> |
| 119 | 118 |
| 120 <div id="footer-menu-container" class="menu-container"> | 119 <div id="footer-menu-container" class="menu-container"> |
| 121 <button id="other-sessions-menu-button" | 120 <button id="other-sessions-menu-button" |
| 122 class="footer-menu-button custom-appearance" hidden> | 121 class="footer-menu-button custom-appearance" hidden> |
| 123 <span i18n-content="otherSessions"></span> | 122 <span i18n-content="otherSessions"></span> |
| 124 <div class="disclosure-triangle"></div> | 123 <div class="disclosure-triangle"></div> |
| 125 </button> | 124 </button> |
| 126 <button id="recently-closed-menu-button" | 125 <button id="recently-closed-menu-button" |
|
Evan Stade
2015/05/13 22:14:31
I think you need to remove this stuff, and probabl
| |
| 127 class="footer-menu-button custom-appearance" hidden> | 126 class="footer-menu-button custom-appearance" hidden> |
| 128 <span i18n-content="recentlyclosed"></span> | 127 <span i18n-content="recentlyclosed"></span> |
| 129 <div class="disclosure-triangle"></div> | 128 <div class="disclosure-triangle"></div> |
| 130 </button> | 129 </button> |
| 131 <a id="chrome-web-store-link"> | 130 <a id="chrome-web-store-link"> |
| 132 <span id="chrome-web-store-title" i18n-content="webStoreTitleShort"> | 131 <span id="chrome-web-store-title" i18n-content="webStoreTitleShort"> |
| 133 </span> | 132 </span> |
| 134 </a> | 133 </a> |
| 135 <div id="vertical-separator"></div> | 134 <div id="vertical-separator"></div> |
| 136 </div> | 135 </div> |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 199 </a> | 198 </a> |
| 200 </p> | 199 </p> |
| 201 </div> | 200 </div> |
| 202 | 201 |
| 203 </div> | 202 </div> |
| 204 | 203 |
| 205 <!-- This is used to measure text in the current locale. It is not visible. --> | 204 <!-- This is used to measure text in the current locale. It is not visible. --> |
| 206 <div id="fontMeasuringDiv"></div> | 205 <div id="fontMeasuringDiv"></div> |
| 207 | 206 |
| 208 </html> | 207 </html> |
| OLD | NEW |