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

Side by Side Diff: netlog_viewer/sdch_view.html

Issue 2178423002: Bring the gh-pages branch up to date with the master branch (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Created 4 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
« no previous file with comments | « netlog_viewer/quic_view.js ('k') | netlog_viewer/sdch_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id=sdch-view-tab-content class=content-box> 1 <div id=sdch-view-tab-content class=content-box>
2 <ul style="margin-top:0"> 2 <ul style="margin-top:0">
3 <li>SDCH Enabled: 3 <li>SDCH Enabled:
4 <span jscontent="!!sdch_enabled" id=sdch-view-sdch-enabled></span> 4 <span id=sdch-view-sdch-enabled></span>
5 </li> 5 </li>
6 </ul> 6 </ul>
7 7
8 <p>SDCH Errors: 8 <p>SDCH Errors:
9 <a href="#events&q=type:URL_REQUEST%20SDCH_DECODING_ERROR" 9 <a href="#events&q=type:URL_REQUEST%20SDCH_DECODING_ERROR"
10 style="padding-right:2em">Decoding</a> 10 style="padding-right:2em">Decoding</a>
11 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_ERROR">Dictionary</a> 11 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_ERROR">Dictionary</a>
12 </p> 12 </p>
13 13
14 <p> 14 <p>
15 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_FETCH"> 15 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_FETCH">
16 SDCH Dictionary Fetches 16 SDCH Dictionary Fetches
17 </a> 17 </a>
18 </p> 18 </p>
19 19
20 <p> 20 <p>
21 <a href="#events&q=type:URL_REQUEST%20Avail-Dictionary"> 21 <a href="#events&q=type:URL_REQUEST%20Avail-Dictionary">
22 SDCH Requests 22 SDCH Requests
23 </a> 23 </a>
24 </p> 24 </p>
25 25
26 <h4> 26 <h4>
27 Dictionaries loaded: <span jscontent="dictionaries.length"></span> 27 Dictionaries loaded: <span id=sdch-view-num-dictionaries-loaded></span>
28 </h4> 28 </h4>
29 <table class="styled-table"> 29 <table class="styled-table">
30 <thead> 30 <thead>
31 <tr> 31 <tr>
32 <th>Domain</th> 32 <th>Domain</th>
33 <th>Path</th> 33 <th>Path</th>
34 <th>Ports</th> 34 <th>Ports</th>
35 <th>Server Hash</th> 35 <th>Server Hash</th>
36 <th>Client Hash</th> 36 <th>Client Hash</th>
37 <th>Url</th> 37 <th>Url</th>
38 </tr> 38 </tr>
39 </thead> 39 </thead>
40 <tbody id=sdch-view-dictionaries-body> 40 <tbody id=sdch-view-dictionaries-tbody>
41 <tr jsselect="dictionaries">
42 <td jscontent="domain"></td>
43 <td jscontent="path"></td>
44 <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td>
45 <td jscontent="server_hash"></td>
46 <td jscontent="client_hash"></td>
47 <td jscontent="url"></td>
48 </tr>
49 </tbody> 41 </tbody>
50 </table> 42 </table>
51 43
52 <h4>Blacklisted domains</h4> 44 <h4>Blacklisted domains</h4>
53 <table class="styled-table"> 45 <table class="styled-table">
54 <thead> 46 <thead>
55 <tr> 47 <tr>
56 <th>Domain</th> 48 <th>Domain</th>
57 <th>Reason</th> 49 <th>Reason</th>
58 <th>Tries to back off</th> 50 <th>Tries to back off</th>
59 </tr> 51 </tr>
60 </thead> 52 </thead>
61 <tbody id=sdch-view-blacklist-body> 53 <tbody id=sdch-view-blacklist-tbody>
62 <tr jsselect="blacklisted">
63 <td jscontent="domain"></td>
64 <td jscontent="sdchProblemCodeToString(reason)"></td>
65 <td jscontent="tries"></td>
66 </tr>
67 </tbody> 54 </tbody>
68 </table> 55 </table>
69 </div> 56 </div>
70 57
OLDNEW
« no previous file with comments | « netlog_viewer/quic_view.js ('k') | netlog_viewer/sdch_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698