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

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

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 8 years, 4 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>$2</title> 4 <title>$2</title>
5 <style> 5 <style>
6 body { 6 body {
7 direction: $5; 7 direction: $5;
8 } 8 }
9 #icon { 9 #icon {
10 height: 32px; 10 height: 32px;
11 width: 32px; 11 width: 32px;
12 float: $4; 12 float: $4;
13 } 13 }
14 #title { 14 #title {
15 margin-$4: 38px; 15 margin-$4: 38px;
16 font-weight: bold; 16 font-weight: bold;
17 font-size: 13px; 17 font-size: 13px;
18 font-family: helvetica, arial, sans-serif; 18 font-family: helvetica, arial, sans-serif;
19 } 19 }
20 #description { 20 #description {
21 margin-$4: 38px; 21 margin-$4: 38px;
22 font-family: helvetica, arial, sans-serif; 22 font-family: helvetica, arial, sans-serif;
23 font-size: 13px; 23 font-size: 13px;
24 } 24 }
25 </style> 25 </style>
26 </head> 26 </head>
27 <body> 27 <body>
28 <div id="icon"><img src="$1" width="32" height="32" /></div> 28 <div id="icon"><img src="$1" width="32" height="32"></div>
29 <div id="title">$2</div> 29 <div id="title">$2</div>
30 <div id="description">$3</div> 30 <div id="description">$3</div>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698