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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/renderer_host/resource_message_filter.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>$2</title>
4 <style type="text/css"><!--
5 #icon {
6 height:48px;
7 width:48px;
8 position:absolute;
9 top:2px;
10 left:2px;
11 display:$4;
12 }
13 #title {
14 font-weight:bold;
15 position:absolute;
16 top:3px;
17 left:$5px;
18 font-family:sans-serif;
19 font-size:11pt;
20 }
21 #body {
22 position:absolute;
23 left:$5px;
24 top:20px;
25 font-family:sans-serif;
26 font-size:9pt;
27 }
28 //-->
29 </style>
30 </head>
31 <body>
32 <div id="icon"><img src="$1" /></div>
33 <div id="title">$2</div>
34 <div id="body">$3</div>
35 </body>
36 </html>
OLDNEW
« 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