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

Side by Side Diff: netlog_viewer/proxy_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/prerender_view.js ('k') | netlog_viewer/proxy_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 <!-- Proxy info --> 1 <!-- Proxy info -->
2 2
3 <style> 3 <style>
4 4
5 #proxy-view-tab-content td, 5 #proxy-view-tab-content td,
6 #proxy-view-tab-content th { 6 #proxy-view-tab-content th {
7 font-size: 85%; 7 font-size: 85%;
8 } 8 }
9 9
10 #proxy-view-socks-hints { 10 #proxy-view-socks-hints {
11 border: 1px solid orange; 11 border: 1px solid orange;
12 padding: 1ex; 12 padding: 1ex;
13 } 13 }
14 14
15 #proxy-view-socks-hints-flag { 15 #proxy-view-socks-hints-flag {
16 margin: 1ex; 16 margin: 1ex;
17 } 17 }
18 18
19 </style> 19 </style>
20 20
21 <div id=proxy-view-tab-content class=content-box> 21 <div id=proxy-view-tab-content class=content-box>
22 <input type=button value="Re-apply settings" id=proxy-view-reload-settings clas s="hide-when-not-capturing">
23
24 <div id=proxy-view-effective-content> 22 <div id=proxy-view-effective-content>
25 <h4>Effective proxy settings</h4> 23 <h4>Effective proxy settings</h4>
26 <pre id=proxy-view-effective-settings></pre> 24 <pre id=proxy-view-effective-settings></pre>
27 </div> 25 </div>
28 26
29 <div id=proxy-view-original-content> 27 <div id=proxy-view-original-content>
30 <h4>Original proxy settings</h4> 28 <h4>Original proxy settings</h4>
31 <pre id=proxy-view-original-settings></pre> 29 <pre id=proxy-view-original-settings></pre>
32 </div> 30 </div>
33 31
34 <div id=proxy-view-socks-hints> 32 <div id=proxy-view-socks-hints>
35 Note that some traffic such as DNS prefetching will NOT go through the proxy 33 Note that some traffic such as DNS prefetching will NOT go through the proxy
36 server. To prevent the browser from doing local DNS resolves try adding this 34 server. To prevent the browser from doing local DNS resolves try adding this
37 command line flag: 35 command line flag:
38 <pre id=proxy-view-socks-hints-flag></pre> 36 <pre id=proxy-view-socks-hints-flag></pre>
39 </div> 37 </div>
40 38
41 <div id=proxy-view-bad-proxies-div style='display: none'> 39 <div id=proxy-view-bad-proxies-div style='display: none'>
42 <h4> 40 <h4>Recently failed proxies, marked as bad</h4>
43 Recently failed proxies, marked as bad
44 <input type=button value="Clear bad proxies" id=proxy-view-clear-bad-proxi es class="hide-when-not-capturing">
45 </h4>
46 <table class="styled-table"> 41 <table class="styled-table">
47 <thead> 42 <thead>
48 <tr> 43 <tr>
49 <th>Bad proxy server</th> 44 <th>Bad proxy server</th>
50 <th>Time for next retry</th> 45 <th>Time for next retry</th>
51 </tr> 46 </tr>
52 </thead> 47 </thead>
53 <tbody id=proxy-view-bad-proxies-tbody></tbody> 48 <tbody id=proxy-view-bad-proxies-tbody></tbody>
54 </table> 49 </table>
55 </div> 50 </div>
56 </div> 51 </div>
57 52
OLDNEW
« no previous file with comments | « netlog_viewer/prerender_view.js ('k') | netlog_viewer/proxy_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698