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

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

Issue 149166: Add support for extended tooltips.... (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 | « no previous file | 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 222
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 .xtitle:title;
233 .style.backgroundImage:'url(&quot;chrome://favicon/' + 233 .style.backgroundImage:'url(&quot;chrome://favicon/' +
234 url + '&quot;)'; 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">
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 </div><div id="tips" class="section"> 282 </div><div id="tips" class="section">
283 <h2 jscontent="tipsandsuggestions"></h2> 283 <h2 jscontent="tipsandsuggestions"></h2>
284 <div id="tip-items" jsskip="!processing"> 284 <div id="tip-items" jsskip="!processing">
285 <div class="tips-title item" jsselect="$this" 285 <div class="tips-title item" jsselect="$this"
286 jsdisplay="!url" 286 jsdisplay="!url"
287 jscontent="localStrings.getString('defaulttipstitle')"> 287 jscontent="localStrings.getString('defaulttipstitle')">
288 </div> 288 </div>
289 <div class="tips-container item-container"> 289 <div class="tips-container item-container">
290 <a class="item" jsselect="$this" 290 <a class="item" jsselect="$this"
291 jsdisplay="url.length" 291 jsdisplay="url.length"
292 jsvalues="href:url;title:title" 292 jsvalues="href:url;.xtitle:title"
293 jscontent="title"></a> 293 jscontent="title"></a>
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(&quot;chrome://favicon/' + url + 304 jsvalues=".style.backgroundImage:'url(&quot;chrome://favicon/' + url +
305 '&quot;)'; 305 '&quot;)';
306 .xtitle:title;
306 dir:direction;" 307 dir:direction;"
307 jscontent="title"></span> 308 jscontent="title"></span>
308 </div> 309 </div>
309 </div> 310 </div>
310 311
311 <script src="local_strings.js"></script> 312 <script src="local_strings.js"></script>
312 <script src="new_new_tab.js"></script> 313 <script src="new_new_tab.js"></script>
313 </html> 314 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/new_new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698