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

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

Issue 7342017: ntp4: Most Visited appearance refresh (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cursor Created 9 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
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <script src="nav_dot.js"></script> 51 <script src="nav_dot.js"></script>
52 <script src="new_tab.js"></script> 52 <script src="new_tab.js"></script>
53 <script src="recently_closed.js"></script> 53 <script src="recently_closed.js"></script>
54 <script src="touch_handler.js"></script> 54 <script src="touch_handler.js"></script>
55 </head> 55 </head>
56 56
57 <body> 57 <body>
58 <div id="notification" class="inactive"> 58 <div id="notification" class="inactive">
59 <span></span> 59 <span></span>
60 <div id="notificationLinks"></div> 60 <div id="notificationLinks"></div>
61 <button></button> 61 <button class="close-button"></button>
62 </div> 62 </div>
63 63
64 <div id="card-slider-frame"> 64 <div id="card-slider-frame">
65 <button id="page-switcher-start" class="page-switcher" hidden>‹</button> 65 <button id="page-switcher-start" class="page-switcher" hidden>‹</button>
66 <div id="page-list"></div> 66 <div id="page-list"></div>
67 <button id="page-switcher-end" class="page-switcher" hidden>›</button> 67 <button id="page-switcher-end" class="page-switcher" hidden>›</button>
68 <div id="attribution"> 68 <div id="attribution">
69 <span i18n-content="attributionintro"></span> 69 <span i18n-content="attributionintro"></span>
70 <img id="attribution-img"> 70 <img id="attribution-img">
71 </div> 71 </div>
(...skipping 10 matching lines...) Expand all
82 <span i18n-content="recentlyclosed"></span> 82 <span i18n-content="recentlyclosed"></span>
83 <div class="disclosure-triangle"></div> 83 <div class="disclosure-triangle"></div>
84 </button> 84 </button>
85 85
86 <!-- TODO(estade): may want to remove this. --> 86 <!-- TODO(estade): may want to remove this. -->
87 <div id="trash"></div> 87 <div id="trash"></div>
88 </div> 88 </div>
89 </div> 89 </div>
90 </body> 90 </body>
91 </html> 91 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698