| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 6 <link rel="stylesheet" href="../ntp4/incognito_and_guest_tab.css"> | 7 <link rel="stylesheet" href="../ntp4/incognito_and_guest_tab.css"> |
| 7 <link rel="stylesheet" href="login/enterprise_info.css"> | 8 <link rel="stylesheet" href="login/enterprise_info.css"> |
| 8 <script> | 9 <script> |
| 9 // Until themes can clear the cache, force-reload the theme stylesheet. | 10 // Until themes can clear the cache, force-reload the theme stylesheet. |
| 10 document.write('<link id="incognitothemecss" rel="stylesheet" ' + | 11 document.write('<link id="incognitothemecss" rel="stylesheet" ' + |
| 11 'href="chrome://theme/css/incognito_new_tab_theme.css?' + | 12 'href="chrome://theme/css/incognito_new_tab_theme.css?' + |
| 12 Date.now() + '">'); | 13 Date.now() + '">'); |
| 13 </script> | 14 </script> |
| 14 </head> | 15 </head> |
| 15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 16 <body> |
| 16 <div id="enterprise-info" location="guest-tab" | 17 <div id="enterprise-info" location="guest-tab" |
| 17 i18n-values="visible:enterpriseInfoVisible;"> | 18 i18n-values="visible:enterpriseInfoVisible;"> |
| 18 <img src="chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY"/> | 19 <img src="chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY"/> |
| 19 <span id="enterprise-info-message" i18n-content="enterpriseInfoMessage"> | 20 <span id="enterprise-info-message" i18n-content="enterpriseInfoMessage"> |
| 20 </span> | 21 </span> |
| 21 <a id="enterprise-info-hint-link" i18n-content="enterpriseLearnMore" | 22 <a id="enterprise-info-hint-link" i18n-content="enterpriseLearnMore" |
| 22 i18n-values=".href:enterpriseInfoHintLink"></a> | 23 i18n-values=".href:enterpriseInfoHintLink"></a> |
| 23 </div> | 24 </div> |
| 24 <div class="content"> | 25 <div class="content"> |
| 25 <h1 i18n-content="guestTabHeading"></h1> | 26 <h1 i18n-content="guestTabHeading"></h1> |
| 26 <p> | 27 <p> |
| 27 <span i18n-content="guestTabDescription"></span> | 28 <span i18n-content="guestTabDescription"></span> |
| 28 <a i18n-content="learnMore" i18n-values=".href:learnMoreLink"></a> | 29 <a i18n-content="learnMore" i18n-values=".href:learnMoreLink"></a> |
| 29 </p> | 30 </p> |
| 30 </div> | 31 </div> |
| 31 </body> | 32 </body> |
| 32 <script> | 33 <script> |
| 33 function themeChanged() { | 34 function themeChanged() { |
| 34 document.getElementById('incognitothemecss').href = | 35 document.getElementById('incognitothemecss').href = |
| 35 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); | 36 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); |
| 36 } | 37 } |
| 37 </script> | 38 </script> |
| 38 </html> | 39 </html> |
| 39 | 40 |
| OLD | NEW |