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

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: Review fixes. Lots. Created 6 years, 2 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 <p>SDCH Errors:
8 <a href="#events&q=type:URL_REQUEST%20SDCH_DECODING_ERROR"
9 style="padding-right:2em">Decoding</a>
10 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_ERROR">Dictionary</a>
mmenke 2014/10/02 21:53:56 Would it be more user friendly to just have on lin
11 </p>
12
13 <p>
14 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_FETCH">
15 SDCH Dictionary Fetches
16 </a>
17 </p>
18
19 <p>
20 <a href="#events&q=type:URL_REQUEST%20Avail-Dictionary">
21 SDCH Requests
22 </a>
23 </p>
24
25 <h4>
26 Dictionaries loaded: <span jscontent="dictionaries.length"></span>
27 </h4>
28 <table class="styled-table">
29 <thead>
30 <tr>
31 <th>Domain</th>
32 <th>Path</th>
33 <th>Ports</th>
34 <th>Server Hash</th>
35 <th>Client Hash</th>
36 <th>Url</th>
37 </tr>
38 </thead>
39 <tbody>
40 <tr jsselect="dictionaries">
41 <td jscontent="domain"></td>
42 <td jscontent="path"></td>
43 <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td>
44 <td jscontent="server_hash"></td>
45 <td jscontent="client_hash"></td>
46 <td jscontent="url"></td>
47 </tr>
48 </tbody>
49 </table>
50
51 <h4>Blacklisted domains</h4>
52 <table class="styled-table">
53 <thead>
54 <tr>
55 <th>Domain</th>
56 <th>Reason</th>
57 <th>Tries to back off</th>
58 </tr>
59 </thead>
60 <tbody>
61 <tr jsselect="blacklisted">
62 <td jscontent="domain"></td>
63 <td jscontent="sdchProblemCodeToString(reason)"></td>
64 <td jscontent="tries"></td>
65 </tr>
66 </tbody>
67 </table>
68 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698