Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Side by Side Diff: chrome/browser/resources/new_new_tab.html

Issue 165107: NNTP: Add a menu item that allows the user to restore all blacklisted... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/new_new_tab.css ('k') | chrome/browser/resources/new_new_tab.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>&nbsp;</span> 86 <span>&nbsp;</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
230 jsvalues=".style.backgroundImage:'url(&quot;chrome://favicon/' + url + 234 jsvalues=".style.backgroundImage:'url(&quot;chrome://favicon/' + url +
231 '&quot;)'; 235 '&quot;)';
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/new_new_tab.css ('k') | chrome/browser/resources/new_new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698