summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/sync_internals/notifications.html
blob: 652fcd85c558521b485f6bf0e7ad04916a228c58 (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
<script src="chrome://sync-internals/notifications.js"></script>

<style>
table#notificationInfo tr:nth-child(odd) {
  background: #eff3ff;
}
</style>

<p id='notificationStateInfo'>
  State: <span jscontent='notificationState'></span>
</p>
<table id='notificationInfo'>
  <tr>
    <th>Type</th>
    <th>Total count</th>
    <th>Session count</th>
    <th>Payload</th>
  </tr>
  <tr jsselect='notifications'>
    <td jscontent='type'></td>
    <td jscontent='totalCount'></td>
    <td jscontent='sessionCount'></td>
    <td jscontent='payload'></td>
  </tr>
</table>