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

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

Issue 149163: A couple of NNTP bug fixes (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 id="t" jsvalues="dir:textdirection;firstview:firstview;bookmarkbarattached :bookmarkbarattached;hasattribution:hasattribution;anim:anim"> 2 <html id="t" jsvalues="dir:textdirection;firstview:firstview;bookmarkbarattached :bookmarkbarattached;hasattribution:hasattribution;anim:anim">
3 3
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title jscontent="title"></title> 5 <title jscontent="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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 <div id="recent-tabs"> 223 <div id="recent-tabs">
224 <h3 jscontent="recentlyclosed"></h3> 224 <h3 jscontent="recentlyclosed"></h3>
225 225
226 <div class="item-container"> 226 <div class="item-container">
227 <div id="tab-items" jsskip="!processing"> 227 <div id="tab-items" jsskip="!processing">
228 <div jsselect="$this"> 228 <div jsselect="$this">
229 <a class="item" 229 <a class="item"
230 jsdisplay="type == 'tab'" 230 jsdisplay="type == 'tab'"
231 jsvalues="href:url; 231 jsvalues="href:url;
232 title:title; 232 title:title;
233 .style.backgroundImage:'url(chrome://favicon/' + url + 233 .style.backgroundImage:'url(&quot;chrome://favicon/' +
234 ')'; 234 url + '&quot;)';
235 dir:direction; 235 dir:direction;
236 .sessionId:sessionId" 236 .sessionId:sessionId"
237 jscontent="title"></a> 237 jscontent="title"></a>
238 <div jsdisplay="type == 'window'" 238 <div jsdisplay="type == 'window'"
239 class="item link window" 239 class="item link window"
240 jsvalues=".sessionId:sessionId; 240 jsvalues=".sessionId:sessionId;
241 .tabItems:tabs" 241 .tabItems:tabs"
242 tabindex="0"> 242 tabindex="0">
243 <span jscontent="formatTabsText($this.tabs.length)"></span> 243 <span jscontent="formatTabsText($this.tabs.length)"></span>
244 </div> 244 </div>
245 </div> 245 </div>
246 </div> 246 </div>
247 247
248 <div> 248 <div>
249 <a href="chrome://history/" class="item nav" 249 <a href="chrome://history/" class="item nav"
250 jscontent="viewfullhistory"></a> 250 jscontent="viewfullhistory"></a>
251 </div> 251 </div>
252 252
253 </div> 253 </div>
254 </div> 254 </div>
255 255
256 <div id="downloads"> 256 <div id="downloads">
257 <h3 jscontent="downloads"></h3> 257 <h3 jscontent="downloads"></h3>
258 <div class="item-container"> 258 <div class="item-container">
259 <div id="download-items" jsskip="!processing"> 259 <div id="download-items" jsskip="!processing">
260 <a class="item" jsselect="$this" 260 <a class="item" jsselect="$this"
261 jsdisplay="state != 'CANCELLED'" 261 jsdisplay="state != 'CANCELLED'"
262 jsvalues="href:file_path;title:url; 262 jsvalues="href:file_path;title:url;
263 .style.backgroundImage:'url(chrome://fileicon/' + 263 .style.backgroundImage:'url(&quot;chrome://fileicon/' +
264 file_path + ')'; 264 file_path + '&quot;)';
265 dir:direction; 265 dir:direction;
266 .fileId:id" 266 .fileId:id"
267 jscontent="file_name"></a> 267 jscontent="file_name"></a>
268 </div> 268 </div>
269 269
270 <div> 270 <div>
271 <a href="chrome://downloads/" class="item nav" 271 <a href="chrome://downloads/" class="item nav"
272 jscontent="viewalldownloads"></a> 272 jscontent="viewalldownloads"></a>
273 </div> 273 </div>
274 274
(...skipping 19 matching lines...) Expand all
294 </div> 294 </div>
295 </div> 295 </div>
296 </div> 296 </div>
297 </div> 297 </div>
298 298
299 </div> <!-- main --> 299 </div> <!-- main -->
300 300
301 <div jsskip="true"> 301 <div jsskip="true">
302 <div class="window-menu" id="window-menu"> 302 <div class="window-menu" id="window-menu">
303 <span class="item" jsselect="$this" 303 <span class="item" jsselect="$this"
304 jsvalues=".style.backgroundImage:'url(chrome://favicon/' + url + ')'; 304 jsvalues=".style.backgroundImage:'url(&quot;chrome://favicon/' + url +
305 '&quot;)';
305 dir:direction;" 306 dir:direction;"
306 jscontent="title"></span> 307 jscontent="title"></span>
307 </div> 308 </div>
308 </div> 309 </div>
309 310
310 <script src="local_strings.js"></script> 311 <script src="local_strings.js"></script>
311 <script src="new_new_tab.js"></script> 312 <script src="new_new_tab.js"></script>
312 </html> 313 </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