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