1 <!DOCTYPE html> 2 <html i18n-values="dir:textdirection"> 3 <head> 4 <meta charset="utf-8"> 5 <title i18n-content="title"></title> 6 <link rel="stylesheet" href="incognito_and_guest_tab.css"> 7 <script> 8 // Until themes can clear the cache, force-reload the theme stylesheet. 9 document.write('<link id="guestthemecss" rel="stylesheet" ' + 10 'href="chrome://theme/css/guest_new_tab_theme.css?' + 11 Date.now() + '">'); 12 </script> 13 </head> 14 <body> 15 <div class="content" 16 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 17 <h1 i18n-content="guestTabHeading"></h1> 18 <p> 19 <span i18n-content="guestTabDescription"></span> 20 <a i18n-content="learnMore" i18n-values=".href:learnMoreLink"></a> 21 </p> 22 </div> 23 </body> 24 <script src="chrome://resources/js/cr.js"></script> 25 <script> 26 function themeChanged() { 27 document.getElementById('guestthemecss').href = 28 'chrome://theme/css/guest_new_tab_theme.css?' + Date.now(); 29 } 30 </script> 31 </html> 32