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

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

Issue 1753783004: NTP4: erase notification promo UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 1 more Created 4 years, 9 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
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.css ('k') | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html class="starting-up" i18n-values="dir:textdirection; 2 <html class="starting-up" i18n-values="dir:textdirection;
3 bookmarkbarattached:bookmarkbarattached; 3 bookmarkbarattached:bookmarkbarattached;
4 lang:language"> 4 lang:language">
5 <head> 5 <head>
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <title i18n-content="title"></title> 7 <title i18n-content="title"></title>
8 <!-- Don't scale the viewport in either portrait or landscape mode. 8 <!-- Don't scale the viewport in either portrait or landscape mode.
9 Note that this means apps will be reflowed when rotated (like iPad). 9 Note that this means apps will be reflowed when rotated (like iPad).
10 If we wanted to maintain position we could remove 'maximum-scale' so 10 If we wanted to maintain position we could remove 'maximum-scale' so
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 <script src="dot_list.js"></script> 56 <script src="dot_list.js"></script>
57 <script src="trash.js"></script> 57 <script src="trash.js"></script>
58 <script src="page_list_view.js"></script> 58 <script src="page_list_view.js"></script>
59 <script src="page_switcher.js"></script> 59 <script src="page_switcher.js"></script>
60 60
61 <script src="nav_dot.js"></script> 61 <script src="nav_dot.js"></script>
62 <script src="new_tab.js"></script> 62 <script src="new_tab.js"></script>
63 </head> 63 </head>
64 64
65 <body> 65 <body>
66 <div id="notification-container" class="inactive" hidden>
67 <div id="notification">
68 <span></span>
69 <div id="notificationLinks"></div>
70 <button class="close-button custom-appearance" class="custom-appearance">
71 </button>
72 </div>
73 </div>
74
75 <div id="card-slider-frame"> 66 <div id="card-slider-frame">
76 <button id="page-switcher-start" class="page-switcher custom-appearance" 67 <button id="page-switcher-start" class="page-switcher custom-appearance"
77 tabindex="2" hidden>‹ 68 tabindex="2" hidden>‹
78 </button> 69 </button>
79 <div id="page-list"></div> 70 <div id="page-list"></div>
80 <button id="page-switcher-end" class="page-switcher custom-appearance" 71 <button id="page-switcher-end" class="page-switcher custom-appearance"
81 tabindex="2" hidden>› 72 tabindex="2" hidden>›
82 </button> 73 </button>
83 <div id="attribution"> 74 <div id="attribution">
84 <span i18n-content="attributionintro"></span> 75 <span i18n-content="attributionintro"></span>
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 </div> 161 </div>
171 <span class="title"></span> 162 <span class="title"></span>
172 </div> 163 </div>
173 164
174 </div> 165 </div>
175 166
176 <!-- This is used to measure text in the current locale. It is not visible. --> 167 <!-- This is used to measure text in the current locale. It is not visible. -->
177 <div id="fontMeasuringDiv"></div> 168 <div id="fontMeasuringDiv"></div>
178 169
179 </html> 170 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.css ('k') | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698