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

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

Issue 147071: Make the options menu keyboard navigatable. Hide the menu when the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 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
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <body class="loading" 51 <body class="loading"
52 jsvalues=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 52 jsvalues=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
53 53
54 <div id="main"> 54 <div id="main">
55 55
56 <div id="view-toolbar"><input type=checkbox id="thumb-checkbox" 56 <div id="view-toolbar"><input type=checkbox id="thumb-checkbox"
57 ><input type=checkbox id="list-checkbox" 57 ><input type=checkbox id="list-checkbox"
58 ><input type="button" id="option-button"></div> 58 ><input type="button" id="option-button"></div>
59 59
60 60
61 <div id="option-menu" class="window-menu" tabindex="0"> 61 <div id="option-menu" class="window-menu">
62 <div section="THUMB" show="true" jscontent="showthumbnails"></div> 62 <div section="THUMB" show="true" jscontent="showthumbnails"></div>
63 <div section="THUMB" show="false" jscontent="hidethumbnails"></div> 63 <div section="THUMB" show="false" jscontent="hidethumbnails"></div>
64 <div section="LIST" show="true" jscontent="showlist"></div> 64 <div section="LIST" show="true" jscontent="showlist"></div>
65 <div section="LIST" show="false" jscontent="hidelist"></div> 65 <div section="LIST" show="false" jscontent="hidelist"></div>
66 <div section="RECENT" show="true" jscontent="showrecent"></div> 66 <div section="RECENT" show="true" jscontent="showrecent"></div>
67 <div section="RECENT" show="false" jscontent="hiderecent"></div> 67 <div section="RECENT" show="false" jscontent="hiderecent"></div>
68 <div section="RECOMMENDATIONS" show="true" 68 <div section="RECOMMENDATIONS" show="true"
69 jscontent="showrecommendations"></div> 69 jscontent="showrecommendations"></div>
70 <div section="RECOMMENDATIONS" show="false" 70 <div section="RECOMMENDATIONS" show="false"
71 jscontent="hiderecommendations"></div> 71 jscontent="hiderecommendations"></div>
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 <span class="item" jsselect="$this" 174 <span class="item" jsselect="$this"
175 jsvalues=".style.backgroundImage:'url(chrome://favicon/' + url + ')'; 175 jsvalues=".style.backgroundImage:'url(chrome://favicon/' + url + ')';
176 dir:direction;" 176 dir:direction;"
177 jscontent="title"></span> 177 jscontent="title"></span>
178 </div> 178 </div>
179 </div> 179 </div>
180 180
181 <script src="local_strings.js"></script> 181 <script src="local_strings.js"></script>
182 <script src="new_new_tab.js"></script> 182 <script src="new_new_tab.js"></script>
183 </html> 183 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698