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

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

Issue 2804823002: Revamp the Incognito NTP on Desktop (Closed)
Patch Set: Font sizes 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-content="title"></title>
Dan Beam 2017/04/20 18:27:51 thanks for converting to $i18n{} as well. seeing
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-content="incognitoTabHeading"></h1>
24 <p id="subtitle">
25 <span i18n-content="incognitoTabDescription"></span>
26 <a class="learn-more-button" i18n-content="learnMore"
27 href="$i18n{learnMoreLink}"></a>
28 </p>
29 <div>
30 <div id="firstBulletpoints"
31 class="bulletpoints">$i18nRaw{incognitoTabFeatures}</div>
32 <div id="secondBulletpoints"
33 class="bulletpoints">$i18nRaw{incognitoTabWarning}</div>
34 <div class="clearer"></div>
35 </div>
36 <a class="learn-more-button" i18n-content="learnMore"
37 href="$i18n{learnMoreLink}"></a>
38 </div>
39 </body>
40 <script src="chrome://resources/js/cr.js"></script>
41 <script src="chrome://resources/js/util.js"></script>
42 <script src="md_incognito_tab.js"></script>
43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698