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

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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 </head> 82 </head>
83 83
84 <body id="ntp5" i18n-values=".style.fontSize:fontsize"> 84 <body id="ntp5" i18n-values=".style.fontSize:fontsize">
85 <button id="login-container" class="custom-appearance" hidden> 85 <button id="login-container" class="custom-appearance" hidden>
86 <div id="login-status-header-container" class="login-status-row"> 86 <div id="login-status-header-container" class="login-status-row">
87 <div id="login-status-header"></div> 87 <div id="login-status-header"></div>
88 </div> 88 </div>
89 <div id="login-status-sub-header"></div> 89 <div id="login-status-sub-header"></div>
90 </button> 90 </button>
91 91
92 <div id="notification-container" class="inactive" hidden>
93 <div id="notification">
94 <span></span>
95 <div id="notificationLinks"></div>
96 <button class="close-button custom-appearance" class="custom-appearance">
97 </button>
98 </div>
99 </div>
100
101 <div id="card-slider-frame"> 92 <div id="card-slider-frame">
102 <div id="page-list-menu"> 93 <div id="page-list-menu">
103 <ul id="dot-list"></ul> 94 <ul id="dot-list"></ul>
95 <div id="notification-container" class="inactive" hidden>
96 <div id="notification">
97 <span></span>
98 <div id="notificationLinks"></div>
99 <button class="close-button custom-appearance">
100 </button>
101 </div>
102 </div>
104 </div> 103 </div>
105 <button id="page-switcher-start" class="page-switcher custom-appearance" 104 <button id="page-switcher-start" class="page-switcher custom-appearance"
106 tabindex="2" hidden>‹ 105 tabindex="2" hidden>‹
107 </button> 106 </button>
108 <div id="page-list"></div> 107 <div id="page-list"></div>
109 <button id="page-switcher-end" class="page-switcher custom-appearance" 108 <button id="page-switcher-end" class="page-switcher custom-appearance"
110 tabindex="2" hidden>› 109 tabindex="2" hidden>›
111 </button> 110 </button>
112 <div id="attribution"> 111 <div id="attribution">
113 <span i18n-content="attributionintro"></span> 112 <span i18n-content="attributionintro"></span>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 <span i18n-content="otherSessionsEmpty"></span> 193 <span i18n-content="otherSessionsEmpty"></span>
195 <p> 194 <p>
196 <a i18n-values="href:otherSessionsLearnMoreUrl" i18n-content="learnMore"> 195 <a i18n-values="href:otherSessionsLearnMoreUrl" i18n-content="learnMore">
197 </a> 196 </a>
198 </p> 197 </p>
199 </div> 198 </div>
200 199
201 </div> 200 </div>
202 201
203 </html> 202 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698