summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/guest_session_tab.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/resources/guest_session_tab.html')
-rw-r--r--chrome/browser/resources/guest_session_tab.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/chrome/browser/resources/guest_session_tab.html b/chrome/browser/resources/guest_session_tab.html
new file mode 100644
index 0000000..06a99be
--- /dev/null
+++ b/chrome/browser/resources/guest_session_tab.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html i18n-values="dir:textdirection;">
+<head>
+<title i18n-content="title"></title>
+<link rel="stylesheet" href="incognito_tab.css">
+<script>
+// Until themes can clear the cache, force-reload the theme stylesheet.
+document.write('<link id="incognitothemecss" rel="stylesheet" ' +
+ 'href="chrome://theme/css/newincognitotab.css?' +
+ Date.now() + '">');
+</script>
+</head>
+<body>
+<div class="content" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+ <img src="shared/images/guest_icon_standalone.png" class="icon" />
+ <span i18n-values=".innerHTML:content"></span>
+</div>
+</body>
+<script>
+function themeChanged() {
+ document.getElementById('incognitothemecss').href =
+ 'chrome://theme/css/newincognitotab.css?' + Date.now();
+}
+</script>
+</html>