Home | History | Annotate | Download | only in chromeos
      1 <!DOCTYPE html>
      2 <html i18n-values="dir:textdirection;">
      3 <head>
      4 <title i18n-content="title"></title>
      5 <link rel="stylesheet" href="../incognito_tab.css">
      6 <link rel="stylesheet" href="login/enterprise_info.css">
      7 <script>
      8 // Until themes can clear the cache, force-reload the theme stylesheet.
      9 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
     10                'href="chrome://theme/css/incognito_new_tab_theme.css?' +
     11                Date.now() + '">');
     12 </script>
     13 </head>
     14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
     15 <div id="enterprise-info" location="guest-tab"
     16      i18n-values="visible:enterpriseInfoVisible;">
     17   <img src="chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY"/>
     18   <span id="enterprise-info-message" i18n-content="enterpriseInfoMessage">
     19   </span>
     20   <a id="enterprise-info-hint-link" i18n-content="learnMore"
     21       i18n-values=".href:enterpriseInfoHintLink"></a>
     22 </div>
     23 <div class="content" >
     24   <span i18n-values=".innerHTML:content"></span>
     25 </div>
     26 </body>
     27 <script>
     28 function themeChanged() {
     29   document.getElementById('incognitothemecss').href =
     30       'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now();
     31 }
     32 </script>
     33 </html>
     34 
     35