OLD | NEW |
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> |
OLD | NEW |