Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: chrome/browser/resources/ntp4/incognito_tab.html

Issue 880313002: webui: add [lang] attribute to <html> element on all webui pages so (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cros Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/guest_tab.html ('k') | chrome/browser/resources/ntp4/new_tab.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698