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

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

Issue 12549010: [net] Add an informational bubble to about:net-internals#proxy when using a single SOCKS v5 proxy s… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address mmenke comments Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/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 {
11 border: 1px solid orange;
12 padding: 1ex;
13 }
14
15 #proxy-view-socks-hints-flag {
16 margin: 1ex;
17 }
18
10 </style> 19 </style>
11 20
12 <div id=proxy-view-tab-content class=content-box> 21 <div id=proxy-view-tab-content class=content-box>
13 <h4> 22 <h4>
14 Current proxy settings 23 Current proxy settings
15 <input type=button value="Re-apply settings" id=proxy-view-reload-settings c lass="hide-when-not-capturing"> 24 <input type=button value="Re-apply settings" id=proxy-view-reload-settings c lass="hide-when-not-capturing">
16 </h4> 25 </h4>
17 26
18 <table><tr> 27 <table><tr>
19 28
20 <td valign=top> 29 <td valign=top>
21 <h3>Effective settings</h3> 30 <h3>Effective settings</h3>
22 <pre id=proxy-view-effective-settings></pre> 31 <pre id=proxy-view-effective-settings></pre>
23 </td> 32 </td>
24 33
25 <td style='width: 30px'>&nbsp;</td> 34 <td style='width: 30px'>&nbsp;</td>
26 35
27 <td valign=top> 36 <td valign=top>
28 <h3>Original settings</h3> 37 <h3>Original settings</h3>
29 <pre id=proxy-view-original-settings></pre> 38 <pre id=proxy-view-original-settings></pre>
30 </td> 39 </td>
31 40
32 </tr></table> 41 </tr></table>
33 42
43 <div id=proxy-view-socks-hints>
44 Note that some traffic such as DNS prefetching will NOT go through the proxy
45 server. To prevent the browser from doing local DNS resolves try adding this
46 command line flag:
47 <pre id=proxy-view-socks-hints-flag></pre>
48 </div>
49
34 <h4> 50 <h4>
35 Recently failed proxies, marked as bad 51 Recently failed proxies, marked as bad
36 <input type=button value="Clear bad proxies" id=proxy-view-clear-bad-proxies class="hide-when-not-capturing"> 52 <input type=button value="Clear bad proxies" id=proxy-view-clear-bad-proxies class="hide-when-not-capturing">
37 </h4> 53 </h4>
38 <table class="styled-table"> 54 <table class="styled-table">
39 <thead> 55 <thead>
40 <tr> 56 <tr>
41 <th>Bad proxy server</th> 57 <th>Bad proxy server</th>
42 <th>Time for next retry</th> 58 <th>Time for next retry</th>
43 </tr> 59 </tr>
44 </thead> 60 </thead>
45 <tbody id=proxy-view-bad-proxies-tbody></tbody> 61 <tbody id=proxy-view-bad-proxies-tbody></tbody>
46 </table> 62 </table>
47 </div> 63 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/proxy_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698