Chromium Code Reviews| 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 <meta charset="utf-8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 <link rel="stylesheet" href="incognito_tab.css"> | 6 <link rel="stylesheet" href="incognito_tab.css"> |
| 7 <script> | 7 <script> |
| 8 // Until themes can clear the cache, force-reload the theme stylesheet. | 8 // Until themes can clear the cache, force-reload the theme stylesheet. |
| 9 document.write('<link id="incognitothemecss" rel="stylesheet" ' + | 9 document.write('<link id="incognitothemecss" rel="stylesheet" ' + |
| 10 'href="chrome://theme/css/incognito_new_tab_theme.css?' + | 10 'href="chrome://theme/css/incognito_new_tab_theme.css?' + |
| 11 Date.now() + '">'); | 11 Date.now() + '">'); |
| 12 </script> | 12 </script> |
| 13 </head> | 13 </head> |
| 14 <body> | 14 <body> |
| 15 <div class="content" | 15 <div class="content"> |
| 16 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 16 <div class="icon"></div> |
|
Evan Stade
2014/04/11 22:15:09
why did you remove the font style?
edwardjung
2014/04/11 22:56:39
We're standardising the font to Arial across the b
| |
| 17 <img src="../../../../ui/webui/resources/images/otr_icon_standalone.png" class ="icon"> | |
| 18 <span i18n-values=".innerHTML:content"></span> | 17 <span i18n-values=".innerHTML:content"></span> |
| 19 <div class="extensions-message"> | |
| 20 <div class="extension-icon"></div> | |
| 21 <span i18n-values=".innerHTML:extensionsmessage"></span> | |
| 22 </div> | |
| 23 </div> | 18 </div> |
| 24 </body> | 19 </body> |
| 25 <script src="chrome://resources/js/cr.js"></script> | 20 <script src="chrome://resources/js/cr.js"></script> |
| 26 <script> | 21 <script> |
| 27 cr.define('ntp', function() { | 22 cr.define('ntp', function() { |
| 28 'use strict'; | 23 'use strict'; |
| 29 /** | 24 /** |
| 30 * Set whether the bookmarks bar is attached or not. | 25 * Set whether the bookmarks bar is attached or not. |
| 31 * @param {boolean} attached Whether the bar is attached or not. | 26 * @param {boolean} attached Whether the bar is attached or not. |
| 32 */ | 27 */ |
| 33 function setBookmarkBarAttached(attached) { | 28 function setBookmarkBarAttached(attached) { |
| 34 document.documentElement.setAttribute('bookmarkbarattached', !!attached); | 29 document.documentElement.setAttribute('bookmarkbarattached', !!attached); |
| 35 } | 30 } |
| 36 | 31 |
| 37 function themeChanged() { | 32 function themeChanged() { |
| 38 document.getElementById('incognitothemecss').href = | 33 document.getElementById('incognitothemecss').href = |
| 39 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); | 34 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); |
| 40 } | 35 } |
| 41 | 36 |
| 42 return { | 37 return { |
| 43 setBookmarkBarAttached: setBookmarkBarAttached, | 38 setBookmarkBarAttached: setBookmarkBarAttached, |
| 44 themeChanged: themeChanged, | 39 themeChanged: themeChanged, |
| 45 }; | 40 }; |
| 46 }); | 41 }); |
| 47 </script> | 42 </script> |
| 48 </html> | 43 </html> |
| OLD | NEW |