OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html i18n-values="dir:textdirection;bookmarkbarattached:bookmarkbarattached"> | 2 <html i18n-values="dir:textdirection; |
| 3 bookmarkbarattached:bookmarkbarattached; |
| 4 lang:language"> |
3 <head> | 5 <head> |
4 <meta charset="utf-8"> | 6 <meta charset="utf-8"> |
5 <title i18n-content="title"></title> | 7 <title i18n-content="title"></title> |
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
7 <link rel="stylesheet" href="incognito_and_guest_tab.css"> | 9 <link rel="stylesheet" href="incognito_and_guest_tab.css"> |
8 <link rel="stylesheet" href="incognito_tab.css"> | 10 <link rel="stylesheet" href="incognito_tab.css"> |
9 <script> | 11 <script> |
10 // Until themes can clear the cache, force-reload the theme stylesheet. | 12 // Until themes can clear the cache, force-reload the theme stylesheet. |
11 document.write('<link id="incognitothemecss" rel="stylesheet" ' + | 13 document.write('<link id="incognitothemecss" rel="stylesheet" ' + |
12 'href="chrome://theme/css/incognito_new_tab_theme.css?' + | 14 'href="chrome://theme/css/incognito_new_tab_theme.css?' + |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); | 47 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); |
46 } | 48 } |
47 | 49 |
48 return { | 50 return { |
49 setBookmarkBarAttached: setBookmarkBarAttached, | 51 setBookmarkBarAttached: setBookmarkBarAttached, |
50 themeChanged: themeChanged, | 52 themeChanged: themeChanged, |
51 }; | 53 }; |
52 }); | 54 }); |
53 </script> | 55 </script> |
54 </html> | 56 </html> |
OLD | NEW |