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

Side by Side Diff: chrome/browser/resources/chromeos/guest_session_tab.html

Issue 117713003: Add encoding info for those WebUI pages that were missing it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
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="../ntp4/incognito_tab.css"> 6 <link rel="stylesheet" href="../ntp4/incognito_tab.css">
6 <link rel="stylesheet" href="login/enterprise_info.css"> 7 <link rel="stylesheet" href="login/enterprise_info.css">
7 <script> 8 <script>
8 // Until themes can clear the cache, force-reload the theme stylesheet. 9 // Until themes can clear the cache, force-reload the theme stylesheet.
9 document.write('<link id="incognitothemecss" rel="stylesheet" ' + 10 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
10 'href="chrome://theme/css/incognito_new_tab_theme.css?' + 11 'href="chrome://theme/css/incognito_new_tab_theme.css?' +
11 Date.now() + '">'); 12 Date.now() + '">');
12 </script> 13 </script>
13 </head> 14 </head>
(...skipping 11 matching lines...) Expand all
25 </div> 26 </div>
26 </body> 27 </body>
27 <script> 28 <script>
28 function themeChanged() { 29 function themeChanged() {
29 document.getElementById('incognitothemecss').href = 30 document.getElementById('incognitothemecss').href =
30 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); 31 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now();
31 } 32 }
32 </script> 33 </script>
33 </html> 34 </html>
34 35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698