OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html i18n-values="dir:textdirection;bookmarkbarattached:bookmarkbarattached"> | 2 <html i18n-values="dir:textdirection;bookmarkbarattached:bookmarkbarattached"> |
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="guest_tab.css"> | 6 <link rel="stylesheet" href="guest_tab.css"> |
6 <script> | 7 <script> |
7 // Until themes can clear the cache, force-reload the theme stylesheet. | 8 // Until themes can clear the cache, force-reload the theme stylesheet. |
8 document.write('<link id="guestthemecss" rel="stylesheet" ' + | 9 document.write('<link id="guestthemecss" rel="stylesheet" ' + |
9 'href="chrome://theme/css/guest_new_tab_theme.css?' + | 10 'href="chrome://theme/css/guest_new_tab_theme.css?' + |
10 Date.now() + '">'); | 11 Date.now() + '">'); |
11 </script> | 12 </script> |
12 </head> | 13 </head> |
13 <body> | 14 <body> |
(...skipping 11 matching lines...) Expand all Loading... |
25 document.getElementById('guestthemecss').href = | 26 document.getElementById('guestthemecss').href = |
26 'chrome://theme/css/guest_new_tab_theme.css?' + Date.now(); | 27 'chrome://theme/css/guest_new_tab_theme.css?' + Date.now(); |
27 } | 28 } |
28 | 29 |
29 return { | 30 return { |
30 themeChanged: themeChanged, | 31 themeChanged: themeChanged, |
31 }; | 32 }; |
32 }); | 33 }); |
33 </script> | 34 </script> |
34 </html> | 35 </html> |
OLD | NEW |