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

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

Issue 6313009: Add possibility to divide chrome users into groups of equal size, and change ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 i18n-values=" 2 <html i18n-values="
3 dir:textdirection; 3 dir:textdirection;
4 bookmarkbarattached:bookmarkbarattached; 4 bookmarkbarattached:bookmarkbarattached;
5 hasattribution:hasattribution; 5 hasattribution:hasattribution;
6 anim:anim; 6 anim:anim;
7 syncispresent:syncispresent; 7 syncispresent:syncispresent;
8 customlogo:customlogo" 8 customlogo:customlogo"
9 install-animation-enabled="true"> 9 install-animation-enabled="true">
10 <head> 10 <head>
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 <div id="attribution" class="attribution nolayout"> 126 <div id="attribution" class="attribution nolayout">
127 <div i18n-content="attributionintro"></div> 127 <div i18n-content="attributionintro"></div>
128 <img id="attribution-img"> 128 <img id="attribution-img">
129 </div> 129 </div>
130 130
131 <div id="main"> 131 <div id="main">
132 132
133 <div id="notification-container"> 133 <div id="notification-container">
134 <div id="notification"> 134 <div id="notification">
135 <span>&nbsp;</span> 135 <span>&nbsp;</span>
136 <span class="link"><span class="link-color"></span></span> 136 <span class="link"><span class="link-color" id="actionlink"></span></span>
arv (Not doing code reviews) 2011/01/24 18:15:11 action-link
Miranda Callahan 2011/01/24 18:39:22 Done.
137 <span class="link"><span class="link-color" id="closelink"></span></span>
137 </div> 138 </div>
138 </div> 139 </div>
139 140
140 <div id="login-container"> 141 <div id="login-container">
141 <span id="login-username"></span> 142 <span id="login-username"></span>
142 </div> 143 </div>
143 144
144 <div class="maxiview" id="apps-maxiview"> 145 <div class="maxiview" id="apps-maxiview">
145 <div id="apps-promo"> 146 <div id="apps-promo">
146 <button id="apps-promo-hide" i18n-content="appspromohide"></button> 147 <button id="apps-promo-hide" i18n-content="appspromohide"></button>
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 // disabled or not. So we need to add the 'disabled' class back to the apps 332 // disabled or not. So we need to add the 'disabled' class back to the apps
332 // section here. We remove it later, once we know for sure we want it to be 333 // section here. We remove it later, once we know for sure we want it to be
333 // enabled. 334 // enabled.
334 // 335 //
335 // See also: crbug.com/67273. 336 // See also: crbug.com/67273.
336 $('apps').classList.add('disabled'); 337 $('apps').classList.add('disabled');
337 338
338 layoutSections(); 339 layoutSections();
339 </script> 340 </script>
340 </html> 341 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698