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

Side by Side Diff: chrome/browser/resources/sync_internals/notifications.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 <script src="chrome://sync-internals/notifications.js"></script> 1 <script src="chrome://sync-internals/notifications.js"></script>
2 2
3 <style> 3 <style>
4 table#notificationInfo tr:nth-child(odd) { 4 table#notificationInfo tr:nth-child(odd) {
5 background: #eff3ff; 5 background: #eff3ff;
6 } 6 }
7 </style> 7 </style>
8 8
9 <p id='notificationStateInfo'> 9 <p id='notificationStateInfo'>
10 State: <span jscontent='notificationState'></span> 10 State: <span jscontent='notificationState'></span>
11 </p> 11 </p>
12 <table id='notificationInfo'> 12 <table id='notificationInfo'>
13 <tr> 13 <tr>
14 <th>Type</th> 14 <th>Type</th>
15 <th>Total count</th> 15 <th>Total count</th>
16 <th>Session count</th> 16 <th>Session count</th>
17 <th>Payload</th> 17 <th>Payload</th>
18 </tr> 18 </tr>
19 <tr jsselect='notifications'> 19 <tr jsselect='notifications'>
20 <td jscontent='type'/> 20 <td jscontent='type'></td>
21 <td jscontent='totalCount'/> 21 <td jscontent='totalCount'></td>
22 <td jscontent='sessionCount'/> 22 <td jscontent='sessionCount'></td>
23 <td jscontent='payload'/> 23 <td jscontent='payload'></td>
24 </tr> 24 </tr>
25 </table> 25 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698