| 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="../ntp4/incognito_and_guest_tab.css"> | 6 <link rel="stylesheet" href="../ntp4/incognito_and_guest_tab.css"> |
| 7 <link rel="stylesheet" href="login/enterprise_info.css"> | 7 <link rel="stylesheet" href="login/enterprise_info.css"> |
| 8 <script> | 8 <script> |
| 9 // Until themes can clear the cache, force-reload the theme stylesheet. | 9 // Until themes can clear the cache, force-reload the theme stylesheet. |
| 10 document.write('<link id="incognitothemecss" rel="stylesheet" ' + | 10 document.write('<link id="incognitothemecss" rel="stylesheet" ' + |
| 11 'href="chrome://theme/css/incognito_new_tab_theme.css?' + | 11 'href="chrome://theme/css/incognito_new_tab_theme.css?' + |
| (...skipping 18 matching lines...) Expand all Loading... |
| 30 </div> | 30 </div> |
| 31 </body> | 31 </body> |
| 32 <script> | 32 <script> |
| 33 function themeChanged() { | 33 function themeChanged() { |
| 34 document.getElementById('incognitothemecss').href = | 34 document.getElementById('incognitothemecss').href = |
| 35 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); | 35 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); |
| 36 } | 36 } |
| 37 </script> | 37 </script> |
| 38 </html> | 38 </html> |
| 39 | 39 |
| OLD | NEW |