OLD | NEW |
---|---|
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>Invalidations</title> | 5 <title>Invalidations</title> |
6 <script src="chrome://resources/js/cr.js"></script> | 6 <script src="chrome://resources/js/cr.js"></script> |
7 <script src="chrome://resources/js/parse_html_subset.js"></script> | 7 <script src="chrome://resources/js/parse_html_subset.js"></script> |
8 <script src="chrome://resources/js/util.js"></script> | 8 <script src="chrome://resources/js/util.js"></script> |
9 <script src="chrome://invalidations/about_invalidations.js"></script> | 9 <script src="chrome://invalidations/about_invalidations.js"></script> |
10 <link rel="stylesheet" href="about_invalidations.css"> | 10 <link rel="stylesheet" href="about_invalidations.css"> |
11 </head> | 11 </head> |
12 <body> | 12 <body> |
13 <h1>Invalidations Debug Information</h1> | 13 <h1>Invalidations Debug Information</h1> |
14 <div id="invalidations-info"> | 14 <div id="invalidations-info"> |
15 <div id="states" class="section"> | 15 <div id="states" class="section"> |
16 <label> | 16 <span class='lead'>Invalidation service state:</span> |
17 <p>Invalidation service state:</p><span id="invalidations-state"></span> | 17 <span id="invalidations-state"></span> |
18 </label> | 18 </div> |
19 <div id="objectsid-table-div" class="section"> | |
20 <span class='lead'>Registered objectsIds for invalidations:</span> | |
21 <table id="objectsid-table-container"> | |
22 <!-- 'objectsidtable' can't have dashes in the name | |
23 as jstemplate can't deal with them--> | |
24 <thead> | |
25 <tr class="header"> | |
26 <td>Registrar</td> | |
rlarocque
2014/02/15 01:35:18
I think <th> would be more appropriate.
mferreria_g
2014/02/15 01:54:44
Agree. Done.
| |
27 <td>Source</td> | |
28 <td>Name</td> | |
29 <td>Count</td> | |
30 <td>Version</td> | |
31 <td>Time</td> | |
32 <td>Last Payload</td> | |
33 </tr> | |
34 </thead> | |
35 <tr jsselect="objectsidtable" jsvalues="class:$this.type"> | |
rlarocque
2014/02/15 01:35:18
There's a <tbody> element, too. I'd be surprised
mferreria_g
2014/02/15 01:54:44
Done. No effect, but made it a bit more HTML compl
| |
36 <td jscontent="registrar" width=5%></td> | |
37 <td jscontent="source" width=5%></td> | |
38 <td jscontent="name" width=20%></td> | |
39 <td jscontent="count" width=5%></td> | |
40 <td jscontent="version" width=10%></td> | |
41 <td jscontent="time" width=20%></td> | |
42 <td jscontent="payload" width=35%></td> | |
43 </tr> | |
44 </table> | |
19 </div> | 45 </div> |
20 <div class="section"> | 46 <div class="section"> |
21 <label> | 47 <span class='lead'>Invalidations Log:</span> |
22 <p>Invalidations Log:</p> | 48 <textarea |
23 <textarea | 49 id="invalidations-log" rows="10" cols="120"readonly></textarea> |
24 id="invalidations-log" rows="10" cols="120" readonly></textarea> | |
25 </label> | |
26 </div> | 50 </div> |
27 </div> | 51 </div> |
52 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | |
28 </body> | 53 </body> |
29 </html> | 54 </html> |
OLD | NEW |