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

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

Issue 2804823002: Revamp the Incognito NTP on Desktop (Closed)
Patch Set: Addressed comments. Created 3 years, 8 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html dir="$i18n{textdirection}"
3 hascustombackground="$i18n{hasCustomBackground}"
4 bookmarkbarattached="$i18n{bookmarkbarattached}"
5 lang="$i18n{language}"
6 class="md">
7 <head>
8 <meta charset="utf-8">
9 <title>$i18n{title}</title>
10 <meta name="viewport" content="width=device-width">
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
12 <link rel="stylesheet" href="md_incognito_tab.css">
13 <script>
14 // Until themes can clear the cache, force-reload the theme stylesheet.
15 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
16 'href="chrome://theme/css/incognito_new_tab_theme.css?' +
17 Date.now() + '">');
18 </script>
19 </head>
20 <body>
21 <div class="content">
22 <div class="icon"></div>
23 <h1>$i18n{incognitoTabHeading}</h1>
24 <p id="subtitle">
25 <span>$i18n{incognitoTabDescription}</span>
26 <a class="learn-more-button"
27 href="$i18n{learnMoreLink}">$i18n{learnMore}</a>
28 </p>
29 <div>
30 <div class="bulletpoints">$i18nRaw{incognitoTabFeatures}</div>
31 <div class="bulletpoints">$i18nRaw{incognitoTabWarning}</div>
32 <div class="clearer"></div>
33 </div>
34 <a class="learn-more-button" href="$i18n{learnMoreLink}">$i18n{learnMore}</a>
35 </div>
36 <script src="chrome://resources/js/cr.js"></script>
37 <script src="chrome://resources/js/util.js"></script>
38 <script src="md_incognito_tab.js"></script>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698