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 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
5 <link rel="stylesheet" href="../ntp4/incognito_tab.css"> | 6 <link rel="stylesheet" href="../ntp4/incognito_tab.css"> |
6 <link rel="stylesheet" href="login/enterprise_info.css"> | 7 <link rel="stylesheet" href="login/enterprise_info.css"> |
7 <script> | 8 <script> |
8 // Until themes can clear the cache, force-reload the theme stylesheet. | 9 // Until themes can clear the cache, force-reload the theme stylesheet. |
9 document.write('<link id="incognitothemecss" rel="stylesheet" ' + | 10 document.write('<link id="incognitothemecss" rel="stylesheet" ' + |
10 'href="chrome://theme/css/incognito_new_tab_theme.css?' + | 11 'href="chrome://theme/css/incognito_new_tab_theme.css?' + |
11 Date.now() + '">'); | 12 Date.now() + '">'); |
12 </script> | 13 </script> |
13 </head> | 14 </head> |
(...skipping 11 matching lines...) Expand all Loading... |
25 </div> | 26 </div> |
26 </body> | 27 </body> |
27 <script> | 28 <script> |
28 function themeChanged() { | 29 function themeChanged() { |
29 document.getElementById('incognitothemecss').href = | 30 document.getElementById('incognitothemecss').href = |
30 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); | 31 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); |
31 } | 32 } |
32 </script> | 33 </script> |
33 </html> | 34 </html> |
34 | 35 |
OLD | NEW |