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

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: '' 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 <head> 6 <head>
7 <meta charset="utf-8"> 7 <meta charset="utf-8">
8 <title i18n-content="title"></title> 8 <title i18n-content="title"></title>
9 <!-- Don't scale the viewport in either portrait or landscape mode. 9 <!-- Don't scale the viewport in either portrait or landscape mode.
10 Note that this means apps will be reflowed when rotated (like iPad). 10 Note that this means apps will be reflowed when rotated (like iPad).
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 </div> 96 </div>
97 </div> 97 </div>
98 </body> 98 </body>
99 99
100 <!-- Apps promo. --> 100 <!-- Apps promo. -->
101 <div id="apps-promo-extras-template" class="apps-promo-extras" hidden> 101 <div id="apps-promo-extras-template" class="apps-promo-extras" hidden>
102 <h3 class="apps-promo-heading"></h3> 102 <h3 class="apps-promo-heading"></h3>
103 <a class="apps-promo-link g-button-basic"><a/> 103 <a class="apps-promo-link g-button-basic"><a/>
104 <a class="apps-promo-hide link-color" href="#"><a/> 104 <a class="apps-promo-hide link-color" href="#"><a/>
105 </div> 105 </div>
106
107 <!-- Bookmark -->
108 <div id="bookmark-template" class="bookmark" hidden>
109 <a class="button bookmark-fills-parent">
110 <div class="close-button"></div>
111 <span class="button-frame bookmark-fills-parent"></span>
112 <span class="favicon bookmark-fills-parent"></span>
113 </a>
114 <div class="color-stripe"></div>
115 <a class="title"></a>
116 </div>
117
118 <!-- Bookmarks Title Wrapper -->
119 <div id="bookmarks-title-wrapper-template" class="section-title-wrapper" hidden>
120 <div class="section-title-mask"></div>
121 <div class="section-title"></div>
122 </div>
123
106 </html> 124 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698