| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values="dir:textdirection;firstview:firstview;bookmarkbarattached:boo
kmarkbarattached;hasattribution:hasattribution;anim:anim"> | 2 <html i18n-values="dir:textdirection;firstview:firstview;bookmarkbarattached:boo
kmarkbarattached;hasattribution:hasattribution;anim:anim"> |
| 3 | 3 |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 <script> | 6 <script> |
| 7 // Logging info for benchmarking purposes. | 7 // Logging info for benchmarking purposes. |
| 8 var log = []; | 8 var log = []; |
| 9 function logEvent(name) { | 9 function logEvent(name) { |
| 10 log.push([name, Date.now()]); | 10 log.push([name, Date.now()]); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 <div id="view-toolbar" | 61 <div id="view-toolbar" |
| 62 ><input type=checkbox id="thumb-checkbox" checked | 62 ><input type=checkbox id="thumb-checkbox" checked |
| 63 i18n-values="title:showhidethumbnailtooltip" | 63 i18n-values="title:showhidethumbnailtooltip" |
| 64 ><input type=checkbox id="list-checkbox" | 64 ><input type=checkbox id="list-checkbox" |
| 65 i18n-values="title:showhidelisttooltip" | 65 i18n-values="title:showhidelisttooltip" |
| 66 ><input type="button" id="option-button" | 66 ><input type="button" id="option-button" |
| 67 i18n-values="title:pagedisplaytooltip"></div> | 67 i18n-values="title:pagedisplaytooltip"></div> |
| 68 | 68 |
| 69 <div id="option-menu" class="window-menu"> | 69 <div id="option-menu" class="window-menu"> |
| 70 <div section="THUMB" show="true" i18n-content="showthumbnails" | 70 <div command="show" section="THUMB" i18n-content="showthumbnails" |
| 71 style="display:none"></div> | 71 style="display:none"></div> |
| 72 <div section="THUMB" show="false" i18n-content="hidethumbnails"></div> | 72 <div command="hide" section="THUMB" i18n-content="hidethumbnails"></div> |
| 73 <div section="LIST" show="true" i18n-content="showlist"></div> | 73 <div command="show" section="LIST" i18n-content="showlist"></div> |
| 74 <div section="LIST" show="false" i18n-content="hidelist" | 74 <div command="hide" section="LIST" i18n-content="hidelist" |
| 75 style="display:none"></div> | 75 style="display:none"></div> |
| 76 <div section="RECENT" show="true" i18n-content="showrecentlyclosedtabs" | 76 <div command="show" section="RECENT" i18n-content="showrecentlyclosedtabs" |
| 77 style="display:none"></div> | 77 style="display:none"></div> |
| 78 <div section="RECENT" show="false" i18n-content="hiderecentlyclosedtabs"></d
iv> | 78 <div command="hide" section="RECENT" |
| 79 i18n-content="hiderecentlyclosedtabs"></div> |
| 80 <hr> |
| 81 <div command="clear-all-blacklisted" |
| 82 i18n-content="restorethumbnails"></div> |
| 79 </div> | 83 </div> |
| 80 | 84 |
| 81 <div id="notification"> | 85 <div id="notification"> |
| 82 <span> </span> | 86 <span> </span> |
| 83 <span><span class="link" tabindex="0"></span></span> | 87 <span><span class="link" tabindex="0"></span></span> |
| 84 </div> | 88 </div> |
| 85 | 89 |
| 86 <div id="most-visited"> | 90 <div id="most-visited"> |
| 87 <a class="thumbnail-container filler" tabindex="1" id="t0"> | 91 <a class="thumbnail-container filler" tabindex="1" id="t0"> |
| 88 <div class="edit-mode-border"> | 92 <div class="edit-mode-border"> |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 jsvalues=".style.backgroundImage:'url("chrome://favicon/' + url + | 234 jsvalues=".style.backgroundImage:'url("chrome://favicon/' + url + |
| 231 '")'; | 235 '")'; |
| 232 dir:direction;" | 236 dir:direction;" |
| 233 jscontent="title"></span> | 237 jscontent="title"></span> |
| 234 </div> | 238 </div> |
| 235 </div> | 239 </div> |
| 236 | 240 |
| 237 <script src="local_strings.js"></script> | 241 <script src="local_strings.js"></script> |
| 238 <script src="new_new_tab.js"></script> | 242 <script src="new_new_tab.js"></script> |
| 239 </html> | 243 </html> |
| OLD | NEW |