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

Side by Side Diff: chrome/browser/resources/sync_internals/events.html

Issue 454573002: [Sync] Make about:sync events page more selection friendly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix browser_test Created 6 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 <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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_internals/events.css ('k') | chrome/browser/resources/sync_internals/events.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698