summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/notification.html
blob: 5e436e7738a2e389ec2ec53cea27c332e1fe6993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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>