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

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

Issue 10907065: NTP5: Fix page blacklisting and remove recently closed tabs when they're clicked. Fix the styling … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 years, 3 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 themegravity:themegravity; 5 themegravity:themegravity;
6 bookmarkbarattached:bookmarkbarattached;" 6 bookmarkbarattached:bookmarkbarattached;"
7 class="starting-up"> 7 class="starting-up">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title i18n-content="title"></title> 10 <title i18n-content="title"></title>
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 </head> 84 </head>
85 85
86 <body id="ntp5" i18n-values=".style.fontSize:fontsize"> 86 <body id="ntp5" i18n-values=".style.fontSize:fontsize">
87 <button id="login-container" class="custom-appearance" hidden> 87 <button id="login-container" class="custom-appearance" hidden>
88 <div id="login-status-header-container" class="login-status-row"> 88 <div id="login-status-header-container" class="login-status-row">
89 <div id="login-status-header"></div> 89 <div id="login-status-header"></div>
90 </div> 90 </div>
91 <div id="login-status-sub-header"></div> 91 <div id="login-status-sub-header"></div>
92 </button> 92 </button>
93 93
94 <div id="notification-container" class="inactive" hidden>
95 <div id="notification">
96 <span></span>
97 <div id="notificationLinks"></div>
98 <button class="close-button custom-appearance" class="custom-appearance">
99 </button>
100 </div>
101 </div>
102
103 <div id="card-slider-frame"> 94 <div id="card-slider-frame">
104 <div id="page-list-menu"> 95 <div id="page-list-menu">
105 <ul id="dot-list"></ul> 96 <ul id="dot-list"></ul>
97 <div id="notification-container" class="inactive" hidden>
98 <div id="notification">
99 <span></span>
100 <div id="notificationLinks"></div>
101 <button class="close-button custom-appearance">
102 </button>
103 </div>
104 </div>
106 </div> 105 </div>
107 <button id="page-switcher-start" class="page-switcher custom-appearance" 106 <button id="page-switcher-start" class="page-switcher custom-appearance"
108 tabindex="2" hidden>‹ 107 tabindex="2" hidden>‹
109 </button> 108 </button>
110 <div id="page-list"></div> 109 <div id="page-list"></div>
111 <button id="page-switcher-end" class="page-switcher custom-appearance" 110 <button id="page-switcher-end" class="page-switcher custom-appearance"
112 tabindex="2" hidden>› 111 tabindex="2" hidden>›
113 </button> 112 </button>
114 <div id="attribution"> 113 <div id="attribution">
115 <span i18n-content="attributionintro"></span> 114 <span i18n-content="attributionintro"></span>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 <span i18n-content="otherSessionsEmpty"></span> 195 <span i18n-content="otherSessionsEmpty"></span>
197 <p> 196 <p>
198 <a i18n-values="href:otherSessionsLearnMoreUrl" i18n-content="learnMore"> 197 <a i18n-values="href:otherSessionsLearnMoreUrl" i18n-content="learnMore">
199 </a> 198 </a>
200 </p> 199 </p>
201 </div> 200 </div>
202 201
203 </div> 202 </div>
204 203
205 </html> 204 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698