| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection; | 2 <html i18n-values="dir:textdirection; |
| 3 hascustombackground:hasCustomBackground; | 3 hascustombackground:hasCustomBackground; |
| 4 bookmarkbarattached:bookmarkbarattached; | 4 bookmarkbarattached:bookmarkbarattached; |
| 5 lang:language"> | 5 lang:language"> |
| 6 <head> | 6 <head> |
| 7 <meta charset="utf-8"> | 7 <meta charset="utf-8"> |
| 8 <title i18n-content="title"></title> | 8 <title i18n-content="title"></title> |
| 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 9 <meta name="viewport" content="width=device-width"> |
| 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 10 <link rel="stylesheet" href="incognito_and_guest_tab.css"> | 11 <link rel="stylesheet" href="incognito_and_guest_tab.css"> |
| 11 <link rel="stylesheet" href="incognito_tab.css"> | 12 <link rel="stylesheet" href="incognito_tab.css"> |
| 12 <script> | 13 <script> |
| 13 // Until themes can clear the cache, force-reload the theme stylesheet. | 14 // Until themes can clear the cache, force-reload the theme stylesheet. |
| 14 document.write('<link id="incognitothemecss" rel="stylesheet" ' + | 15 document.write('<link id="incognitothemecss" rel="stylesheet" ' + |
| 15 'href="chrome://theme/css/incognito_new_tab_theme.css?' + | 16 'href="chrome://theme/css/incognito_new_tab_theme.css?' + |
| 16 Date.now() + '">'); | 17 Date.now() + '">'); |
| 17 </script> | 18 </script> |
| 18 </head> | 19 </head> |
| 19 <body> | 20 <body> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); | 52 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); |
| 52 } | 53 } |
| 53 | 54 |
| 54 return { | 55 return { |
| 55 setBookmarkBarAttached: setBookmarkBarAttached, | 56 setBookmarkBarAttached: setBookmarkBarAttached, |
| 56 themeChanged: themeChanged, | 57 themeChanged: themeChanged, |
| 57 }; | 58 }; |
| 58 }); | 59 }); |
| 59 </script> | 60 </script> |
| 60 </html> | 61 </html> |
| OLD | NEW |