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

Side by Side Diff: chrome/browser/resources/net_internals/sdch_view.html

Issue 423813002: Sdch view for net-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
(Empty)
1 <div id=sdch-view-tab-content class=content-box>
2 <ul style='margin-top:0'>
3 <li>SDCH Enabled: <span jscontent="!!sdch_enabled"></span></li>
4 <li>Secure Scheme Support Enabled: <span jscontent="!!secure_scheme_support" ></span></li>
5 </ul>
6
7 <h4>
8 Dictionaries loaded: <span jscontent="dictionaries.length"></span>
9 </h4>
10 <table class="styled-table">
11 <thead>
12 <tr>
13 <th>Domain</th>
14 <th>Path</th>
15 <th>Ports</th>
16 <th>Server Hash</th>
17 <th>Client Hash</th>
18 <th>Url</th>
19 <th>Expiration</th>
20 </tr>
21 </thead>
22 <tbody>
23 <tr jsselect="dictionaries">
24 <td jscontent="domain"></td>
25 <td jscontent="path"></td>
26 <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td>
27 <td jscontent="server_hash"></td>
28 <td jscontent="client_hash"></td>
29 <td jscontent="url"></td>
30 <td jscontent="timeutil.dateToString(timeutil.convertTimeTicksToDate(exp iration)"></td>
31 </tr>
32 </tbody>
33 </table>
34
35 <h4>Blacklisted domains</h4>
36 <table class="styled-table">
37 <thead>
38 <tr>
39 <th>Domain</th>
40 <th>Tries to back off</th>
41 </tr>
42 </thead>
43 <tbody>
44 <tr jsselect="blacklisted">
Randy Smith (Not in Mondays) 2014/07/28 19:52:43 You might want to be aware of https://codereview.c
45 <td jscontent="domain"></td>
46 <td jscontent="tries"></td>
47 </tr>
48 </tbody>
49 </table>
50
51 <h4>Dictionary load errors</h4>
52 <table class="styled-table">
53 <thead>
54 <tr>
55 <th>URL</th>
56 <th>Error number</th>
57 </tr>
58 </thead>
59 <tbody>
60 <tr jsselect="dict_errors">
61 <td jscontent="url"></td>
62 <td jscontent="error"></td>
Randy Smith (Not in Mondays) 2014/07/28 19:52:42 The errors are currently shown in the view by numb
63 </tr>
64 </tbody>
65 </table>
66
67 <h4>SDCH usage errors</h4>
68 <table class="styled-table">
69 <thead>
70 <tr>
71 <th>URL</th>
72 <th>Error number</th>
73 </tr>
74 </thead>
75 <tbody>
76 <tr jsselect="usage_errors">
77 <td jscontent="url"></td>
78 <td jscontent="error"></td>
79 </tr>
80 </tbody>
81 </table>
82 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698