| 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 | 9 |
| 9 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
| 10 <title i18n-content="title"></title> | 11 <title i18n-content="title"></title> |
| 11 <script> | 12 <script> |
| 12 // Logging info for benchmarking purposes. | 13 // Logging info for benchmarking purposes. |
| 13 var log = []; | 14 var log = []; |
| 14 function logEvent(name, shouldLogTime) { | 15 function logEvent(name, shouldLogTime) { |
| 15 if (shouldLogTime) { | 16 if (shouldLogTime) { |
| 16 chrome.send('logEventTime', [name]); | 17 chrome.send('logEventTime', [name]); |
| 17 } | 18 } |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 </span> | 248 </span> |
| 248 </div> | 249 </div> |
| 249 <script>updateSimpleSection('recently-closed', Section.RECENT);</script> | 250 <script>updateSimpleSection('recently-closed', Section.RECENT);</script> |
| 250 | 251 |
| 251 <div id="sync-status"> | 252 <div id="sync-status"> |
| 252 <h2></h2> | 253 <h2></h2> |
| 253 <span></span> | 254 <span></span> |
| 254 </div> | 255 </div> |
| 255 <script>updateSimpleSection('sync-status', Section.SYNC);</script> | 256 <script>updateSimpleSection('sync-status', Section.SYNC);</script> |
| 256 | 257 |
| 258 <div id="set-as-home-page"> |
| 259 <button class="link"> |
| 260 <span class="link-color" i18n-content="makethishomepage"></span> |
| 261 </button> |
| 262 </div> |
| 263 |
| 257 <div id="tip-line"></div> | 264 <div id="tip-line"></div> |
| 258 <script>updateSimpleSection('tip-line', Section.TIPS);</script> | 265 <script>updateSimpleSection('tip-line', Section.TIPS);</script> |
| 259 | 266 |
| 260 <div id="attribution" class="attribution"> | 267 <div id="attribution" class="attribution"> |
| 261 <div i18n-content="attributionintro"></div> | 268 <div i18n-content="attributionintro"></div> |
| 262 <img id="attribution-img"> | 269 <img id="attribution-img"> |
| 263 </div> | 270 </div> |
| 264 | 271 |
| 265 </div> <!-- main --> | 272 </div> <!-- main --> |
| 266 | 273 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 279 | 286 |
| 280 </div> <!-- container --> | 287 </div> <!-- container --> |
| 281 | 288 |
| 282 <div class="window-menu" id="window-tooltip"></div> | 289 <div class="window-menu" id="window-tooltip"></div> |
| 283 | 290 |
| 284 </body> | 291 </body> |
| 285 <script src="i18n_template.js"></script> | 292 <script src="i18n_template.js"></script> |
| 286 <script src="local_strings.js"></script> | 293 <script src="local_strings.js"></script> |
| 287 <script src="new_new_tab.js"></script> | 294 <script src="new_new_tab.js"></script> |
| 288 </html> | 295 </html> |
| OLD | NEW |