Chromium Code Reviews| Index: chrome/browser/resources/ntp4/md_incognito_tab.html |
| diff --git a/chrome/browser/resources/ntp4/md_incognito_tab.html b/chrome/browser/resources/ntp4/md_incognito_tab.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cf1549e5e7012ba871c7096c49925870ff9f73b8 |
| --- /dev/null |
| +++ b/chrome/browser/resources/ntp4/md_incognito_tab.html |
| @@ -0,0 +1,43 @@ |
| +<!doctype html> |
| +<html dir="$i18n{textdirection}" |
| + hascustombackground="$i18n{hasCustomBackground}" |
| + bookmarkbarattached="$i18n{bookmarkbarattached}" |
| + lang="$i18n{language}" |
| + class="md"> |
| +<head> |
| +<meta charset="utf-8"> |
| +<title i18n-content="title"></title> |
|
Dan Beam
2017/04/20 18:27:51
thanks for converting to $i18n{} as well. seeing
|
| +<meta name="viewport" content="width=device-width"> |
| +<link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| +<link rel="stylesheet" href="md_incognito_tab.css"> |
| +<script> |
| +// Until themes can clear the cache, force-reload the theme stylesheet. |
| +document.write('<link id="incognitothemecss" rel="stylesheet" ' + |
| + 'href="chrome://theme/css/incognito_new_tab_theme.css?' + |
| + Date.now() + '">'); |
| +</script> |
| +</head> |
| +<body> |
| +<div class="content"> |
| + <div class="icon"></div> |
| + <h1 i18n-content="incognitoTabHeading"></h1> |
| + <p id="subtitle"> |
| + <span i18n-content="incognitoTabDescription"></span> |
| + <a class="learn-more-button" i18n-content="learnMore" |
| + href="$i18n{learnMoreLink}"></a> |
| + </p> |
| + <div> |
| + <div id="firstBulletpoints" |
| + class="bulletpoints">$i18nRaw{incognitoTabFeatures}</div> |
| + <div id="secondBulletpoints" |
| + class="bulletpoints">$i18nRaw{incognitoTabWarning}</div> |
| + <div class="clearer"></div> |
| + </div> |
| + <a class="learn-more-button" i18n-content="learnMore" |
| + href="$i18n{learnMoreLink}"></a> |
| +</div> |
| +</body> |
| +<script src="chrome://resources/js/cr.js"></script> |
| +<script src="chrome://resources/js/util.js"></script> |
| +<script src="md_incognito_tab.js"></script> |
| +</html> |