OLD | NEW |
1 <style> | |
2 #sync-events-table, | |
3 #sync-events-table th, | |
4 #sync-events-table td { | |
5 border: 1px black solid; | |
6 } | |
7 | |
8 #sync-events-table { | |
9 width: 100%; | |
10 } | |
11 | |
12 #sync-events > tr { | |
13 vertical-align: top; | |
14 } | |
15 | |
16 </style> | |
17 | |
18 <table id="sync-events-table"> | 1 <table id="sync-events-table"> |
19 <thead> | 2 <thead> |
20 <th>Time</th> | 3 <th>Details</th> |
21 <th>Submodule</th> | 4 <th>Submodule</th> |
22 <th>Event</th> | 5 <th>Event</th> |
23 <th>Details</th> | 6 <th>Time</th> |
24 </thead> | 7 </thead> |
25 <tbody id="sync-events"> | 8 <tbody id="sync-events"> |
26 <tr jsselect="eventList"> | 9 <tr jsselect="eventList"> |
27 <td jscontent="date" ></td> | |
28 <td jscontent="submodule" ></td> | |
29 <td jscontent="event" ></td> | |
30 <td> | 10 <td> |
31 <button class="toggleButton">Toggle Display</button> | 11 <button class="toggle-button">Toggle Display</button> |
32 <pre class="details" jscontent="textDetails" hidden></pre> | 12 <pre jscontent="textDetails" class="details" hidden></pre> |
33 </td> | 13 </td> |
| 14 <td jscontent="submodule" class="attrib-column"></td> |
| 15 <td jscontent="event" class="attrib-column"></td> |
| 16 <td jscontent="date" class="attrib-column"></td> |
34 </tr> | 17 </tr> |
35 </tbody> | 18 </tbody> |
36 </table> | 19 </table> |
37 | |
38 <script src="chrome://sync-internals/events.js"></script> | |
OLD | NEW |