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

Unified Diff: chrome/browser/resources/notification.html

Issue 271052: Browser side support (sans UI) for desktop notifications.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/renderer_host/resource_message_filter.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/notification.html
===================================================================
--- chrome/browser/resources/notification.html (revision 0)
+++ chrome/browser/resources/notification.html (revision 0)
@@ -0,0 +1,36 @@
+<html>
+<head>
+<title>$2</title>
+<style type="text/css"><!--
+#icon {
+height:48px;
+width:48px;
+position:absolute;
+top:2px;
+left:2px;
+display:$4;
+}
+#title {
+font-weight:bold;
+position:absolute;
+top:3px;
+left:$5px;
+font-family:sans-serif;
+font-size:11pt;
+}
+#body {
+position:absolute;
+left:$5px;
+top:20px;
+font-family:sans-serif;
+font-size:9pt;
+}
+//-->
+</style>
+</head>
+<body>
+<div id="icon"><img src="$1" /></div>
+<div id="title">$2</div>
+<div id="body">$3</div>
+</body>
+</html>
Property changes on: chrome/browser/resources/notification.html
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/renderer_host/resource_message_filter.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698