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

Side by Side Diff: chrome/browser/resources/ntp4/new_tab.html

Issue 7610014: [ntp4] Bookmarks page implementation, first-pass. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Final review tweaks, rebase. Created 9 years, 4 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 hasattribution:hasattribution; 4 hasattribution:hasattribution;
5 customlogo:customlogo; 5 customlogo:customlogo;
6 themegravity:themegravity;"> 6 themegravity:themegravity;">
7 <head> 7 <head>
8 <meta charset="utf-8"> 8 <meta charset="utf-8">
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <!-- Don't scale the viewport in either portrait or landscape mode. 10 <!-- Don't scale the viewport in either portrait or landscape mode.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 </div> 99 </div>
100 </div> 100 </div>
101 </body> 101 </body>
102 102
103 <!-- Apps promo. --> 103 <!-- Apps promo. -->
104 <div id="apps-promo-extras-template" class="apps-promo-extras" hidden> 104 <div id="apps-promo-extras-template" class="apps-promo-extras" hidden>
105 <h3 class="apps-promo-heading"></h3> 105 <h3 class="apps-promo-heading"></h3>
106 <a class="apps-promo-link g-button-basic"><a/> 106 <a class="apps-promo-link g-button-basic"><a/>
107 <a class="apps-promo-hide link-color" href="#"><a/> 107 <a class="apps-promo-hide link-color" href="#"><a/>
108 </div> 108 </div>
109
110 <!-- Bookmark -->
111 <div id="bookmark-template" class="bookmark" hidden>
112 <a class="button bookmark-fills-parent">
113 <div class="close-button"></div>
114 <span class="button-frame bookmark-fills-parent"></span>
115 <span class="favicon bookmark-fills-parent"></span>
116 </a>
117 <div class="color-stripe"></div>
118 <a class="title"></a>
119 </div>
120
121 <!-- Bookmarks Title Wrapper -->
122 <div id="bookmarks-title-wrapper" class="section-title-wrapper" hidden>
123 <div class="section-title-mask"></div>
124 <div class="section-title"></div>
125 </div>
126
109 </html> 127 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698