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

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

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 8 years, 4 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 | 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 <title i18n-content="title"></title> 4 <title i18n-content="title"></title>
5 <link rel="stylesheet" href="../incognito_tab.css"> 5 <link rel="stylesheet" href="../incognito_tab.css">
6 <script> 6 <script>
7 // Until themes can clear the cache, force-reload the theme stylesheet. 7 // Until themes can clear the cache, force-reload the theme stylesheet.
8 document.write('<link id="incognitothemecss" rel="stylesheet" ' + 8 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
9 'href="chrome://theme/css/incognito_new_tab_theme.css?' + 9 'href="chrome://theme/css/incognito_new_tab_theme.css?' +
10 Date.now() + '">'); 10 Date.now() + '">');
11 </script> 11 </script>
12 </head> 12 </head>
13 <body> 13 <body>
14 <div class="content" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:f ontsize"> 14 <div class="content" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:f ontsize">
15 <img src="../shared/images/guest_icon_standalone.png" class="icon" /> 15 <img src="../shared/images/guest_icon_standalone.png" class="icon">
16 <span i18n-values=".innerHTML:content"></span> 16 <span i18n-values=".innerHTML:content"></span>
17 </div> 17 </div>
18 </body> 18 </body>
19 <script> 19 <script>
20 function themeChanged() { 20 function themeChanged() {
21 document.getElementById('incognitothemecss').href = 21 document.getElementById('incognitothemecss').href =
22 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now(); 22 'chrome://theme/css/incognito_new_tab_theme.css?' + Date.now();
23 } 23 }
24 </script> 24 </script>
25 </html> 25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698