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

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

Issue 150194: Fix performance issues with NNTP.... (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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 </script> 49 </script>
50 <link rel="stylesheet" href="new_new_tab.css"> 50 <link rel="stylesheet" href="new_new_tab.css">
51 <link id="themecss" rel="stylesheet" href="chrome://theme/css/newtab.css"> 51 <link id="themecss" rel="stylesheet" href="chrome://theme/css/newtab.css">
52 </head> 52 </head>
53 <body class="loading" 53 <body class="loading"
54 jsvalues=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 54 jsvalues=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
55 55
56 <div id="main"> 56 <div id="main">
57 57
58 <div id="view-toolbar"><input type=checkbox id="thumb-checkbox" 58 <div id="view-toolbar"
59 ><input type=checkbox id="list-checkbox" 59 ><input type=checkbox id="thumb-checkbox" checked
60 jsvalues="title:hidethumbnails"
61 ><input type=checkbox id="list-checkbox" jsvalues="title:showlist"
60 ><input type="button" id="option-button"></div> 62 ><input type="button" id="option-button"></div>
61 63
62
63 <div id="option-menu" class="window-menu"> 64 <div id="option-menu" class="window-menu">
64 <div section="THUMB" show="true" jscontent="showthumbnails"></div> 65 <div section="THUMB" show="true" jscontent="showthumbnails"
66 style="display:none"></div>
65 <div section="THUMB" show="false" jscontent="hidethumbnails"></div> 67 <div section="THUMB" show="false" jscontent="hidethumbnails"></div>
66 <div section="LIST" show="true" jscontent="showlist"></div> 68 <div section="LIST" show="true" jscontent="showlist"></div>
67 <div section="LIST" show="false" jscontent="hidelist"></div> 69 <div section="LIST" show="false" jscontent="hidelist"
68 <div section="RECENT" show="true" jscontent="showrecent"></div> 70 style="display:none"></div>
71 <div section="RECENT" show="true" jscontent="showrecent"
72 style="display:none"></div>
69 <div section="RECENT" show="false" jscontent="hiderecent"></div> 73 <div section="RECENT" show="false" jscontent="hiderecent"></div>
70 <div section="TIPS" show="true" 74 <div section="TIPS" show="true"
71 jscontent="showtips"></div> 75 jscontent="showtips" style="display:none"></div>
72 <div section="TIPS" show="false" 76 <div section="TIPS" show="false"
73 jscontent="hidetips"></div> 77 jscontent="hidetips"></div>
74 </div> 78 </div>
75 79
76 <div id="notification"> 80 <div id="notification">
77 <span>&nbsp;</span> 81 <span>&nbsp;</span>
78 <span><span class="link" tabindex="0"></span></span> 82 <span><span class="link" tabindex="0"></span></span>
79 </div> 83 </div>
80 84
81 <div id="most-visited" jsskip="!processing"> 85 <div id="most-visited" jsskip="true">
82 <a class="thumbnail-container" style="display:none" id="thumbnail-template"> 86 <a class="thumbnail-container" style="display:none" id="thumbnail-template">
83 <div class="edit-mode-border"> 87 <div class="edit-mode-border">
84 <div class="edit-bar"> 88 <div class="edit-bar">
85 <div class="pin"></div> 89 <div class="pin"></div>
86 <div class="spacer"></div> 90 <div class="spacer"></div>
87 <div class="remove"></div> 91 <div class="remove"></div>
88 </div> 92 </div>
89 <span class="thumbnail-wrapper"> 93 <span class="thumbnail-wrapper">
90 <span class="thumbnail"></span> 94 <span class="thumbnail"></span>
91 </span> 95 </span>
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 <span class="item" jsselect="$this" 186 <span class="item" jsselect="$this"
183 jsvalues=".style.backgroundImage:'url(chrome://favicon/' + url + ')'; 187 jsvalues=".style.backgroundImage:'url(chrome://favicon/' + url + ')';
184 dir:direction;" 188 dir:direction;"
185 jscontent="title"></span> 189 jscontent="title"></span>
186 </div> 190 </div>
187 </div> 191 </div>
188 192
189 <script src="local_strings.js"></script> 193 <script src="local_strings.js"></script>
190 <script src="new_new_tab.js"></script> 194 <script src="new_new_tab.js"></script>
191 </html> 195 </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