diff options
-rw-r--r-- | chrome/browser/resources/new_new_tab.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/browser/resources/new_new_tab.html b/chrome/browser/resources/new_new_tab.html index a5a5645..dc0b2b5 100644 --- a/chrome/browser/resources/new_new_tab.html +++ b/chrome/browser/resources/new_new_tab.html @@ -48,7 +48,12 @@ logEvent('log start'); </script> <link rel="stylesheet" href="new_new_tab.css"> -<link id="themecss" rel="stylesheet" href="chrome://theme/css/newtab.css"> +<script> +// Until themes can clear the cache, force-reload the theme stylesheet. +document.write('<link id="themecss" rel="stylesheet" ' + + 'href="chrome://theme/css/newtab.css?' + + (new Date()).getTime() + '">'); +</script> </head> <body class="loading" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |