| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values=" | 2 <html i18n-values=" |
| 3 dir:textdirection; | 3 dir:textdirection; |
| 4 bookmarkbarattached:bookmarkbarattached; | 4 bookmarkbarattached:bookmarkbarattached; |
| 5 hasattribution:hasattribution; | 5 hasattribution:hasattribution; |
| 6 anim:anim; | 6 anim:anim; |
| 7 syncispresent:syncispresent; | 7 syncispresent:syncispresent; |
| 8 showsetashomepage:showsetashomepage"> | 8 showsetashomepage:showsetashomepage"> |
| 9 | 9 |
| 10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 | 164 |
| 165 function updateSimpleSection(id, section) { | 165 function updateSimpleSection(id, section) { |
| 166 $(id).style.display = shownSections & section ? '' : 'none'; | 166 $(id).style.display = shownSections & section ? '' : 'none'; |
| 167 } | 167 } |
| 168 | 168 |
| 169 </script> | 169 </script> |
| 170 </head> | 170 </head> |
| 171 <body class="loading" | 171 <body class="loading" |
| 172 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 172 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 173 | 173 |
| 174 <div id="bottom-right-promo"> | 174 <div id="container"> |
| 175 <a i18n-values="href:extensionslink"> | |
| 176 <img src="chrome://theme/newtab_extensions_promo"> | |
| 177 </a> | |
| 178 </div> | |
| 179 | |
| 180 <div id="main"> | 175 <div id="main"> |
| 181 | 176 |
| 182 <div id="view-toolbar" | 177 <div id="view-toolbar" |
| 183 ><input type=checkbox id="thumb-checkbox" checked | 178 ><input type=checkbox id="thumb-checkbox" checked |
| 184 i18n-values="title:showhidethumbnailtooltip" | 179 i18n-values="title:showhidethumbnailtooltip" |
| 185 ><input type=checkbox id="list-checkbox" | 180 ><input type=checkbox id="list-checkbox" |
| 186 i18n-values="title:showhidelisttooltip" | 181 i18n-values="title:showhidelisttooltip" |
| 187 ><input type="button" id="option-button" | 182 ><input type="button" id="option-button" |
| 188 i18n-values="title:pagedisplaytooltip"></div> | 183 i18n-values="title:pagedisplaytooltip"></div> |
| 189 | 184 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 </div> | 262 </div> |
| 268 | 263 |
| 269 <div id="tip-line"></div> | 264 <div id="tip-line"></div> |
| 270 <script>updateSimpleSection('tip-line', Section.TIPS);</script> | 265 <script>updateSimpleSection('tip-line', Section.TIPS);</script> |
| 271 | 266 |
| 272 <div id="attribution" class="attribution"> | 267 <div id="attribution" class="attribution"> |
| 273 <div i18n-content="attributionintro"></div> | 268 <div i18n-content="attributionintro"></div> |
| 274 <img id="attribution-img"> | 269 <img id="attribution-img"> |
| 275 </div> | 270 </div> |
| 276 | 271 |
| 277 <div id="footer"> | |
| 278 <div id="promo-line"> | |
| 279 <span id="promo-new" i18n-content="promonew"></span> | |
| 280 <span i18n-values=".innerHTML:promomessage"></span> | |
| 281 <button id="promo-close"> | |
| 282 </div> | |
| 283 </div> | |
| 284 | |
| 285 </div> <!-- main --> | 272 </div> <!-- main --> |
| 286 | 273 |
| 274 <div id="footer"> |
| 275 <div id="promo-line"> |
| 276 <span id="promo-new" i18n-content="promonew"></span> |
| 277 <span id="promo-message" i18n-values=".innerHTML:promomessage"></span> |
| 278 <button class="link" id="promo-close"></button> |
| 279 </div> |
| 280 <div id="bottom-right-promo"> |
| 281 <a i18n-values="href:extensionslink"> |
| 282 <img id="promo-image" src="chrome://theme/newtab_extensions_promo"> |
| 283 </a> |
| 284 </div> |
| 285 </div> |
| 286 |
| 287 </div> <!-- container --> |
| 288 |
| 287 <div class="window-menu" id="window-tooltip"></div> | 289 <div class="window-menu" id="window-tooltip"></div> |
| 288 | 290 |
| 289 </body> | 291 </body> |
| 290 <script src="i18n_template.js"></script> | 292 <script src="i18n_template.js"></script> |
| 291 <script src="local_strings.js"></script> | 293 <script src="local_strings.js"></script> |
| 292 <script src="new_new_tab.js"></script> | 294 <script src="new_new_tab.js"></script> |
| 293 </html> | 295 </html> |
| OLD | NEW |