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

Side by Side Diff: chrome/browser/resources/notification.html

Issue 194108: adds DesktopNotificationService to Profile (Closed)
Patch Set: more feedback 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
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

Powered by Google App Engine
This is Rietveld 408576698