Fix infinite recursion on hiding panel when created during fullscreen mode.
[chromium-blink-merge.git] / chrome / browser / resources / about_invalidations.html
blobe1fc8c8458a3182346fca9ee11c68e07b63b0ef0
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Invalidations</title>
6 <script src="chrome://resources/js/cr.js"></script>
7 <script src="chrome://resources/js/parse_html_subset.js"></script>
8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://invalidations/about_invalidations.js"></script>
10 <link rel="stylesheet" href="about_invalidations.css">
11 </head>
12 <body>
13 <h1>Invalidations Debug Information</h1>
14 <div id="invalidations-info">
15 <div id="states" class="section">
16 <span class="lead">Invalidation service state:</span>
17 <span id="invalidations-state"></span>
18 </div>
19 <div>
20 <span class="lead">Registered InvalidationHandlers:</span>
21 <span id="registered-handlers"></span>
22 </div>
23 <div id="objectsid-table-div" class="section">
24 <span class="lead">Registered objectsIds for invalidations:</span>
25 <table id="objectsid-table-container">
26 <!-- 'objectsidtable' can't have dashes in the name
27 as jstemplate can't deal with them-->
28 <thead>
29 <tr class="header">
30 <th>Registrar</th>
31 <th>Source</th>
32 <th>Name</th>
33 <th>Count</th>
34 <th>Version</th>
35 <th>Time</th>
36 <th>Last Payload</th>
37 </tr>
38 </thead>
39 <tbody>
40 <tr jsselect="objectsidtable" jsvalues="class:$this.type">
41 <td jscontent="registrar" width=5%></td>
42 <td jscontent="source" width=5%></td>
43 <td jscontent="name" width=20%></td>
44 <td jscontent="count" width=5%></td>
45 <td jscontent="version" width=10%></td>
46 <td jscontent="time" width=20%></td>
47 <td jscontent="payload" width=35%></td>
48 </tr>
49 </tbody>
50 </table>
51 </div>
52 <div class="section">
53 <span class="lead">Invalidations Log:</span>
54 <textarea
55 id="invalidations-log" rows="10" cols="120"readonly></textarea>
56 </div>
57 <div class="section">
58 <span class="lead">Detailed Internal Status:
59 <button id="request-detailed-status">Refresh</button>
60 </span>
61 <textarea id="internal-display" rows="10" cols="120" readonly></textarea>
62 </div>
63 </div>
64 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
65 </body>
66 </html>