blob: 91bbcf2378ff2f4fd80d4ed1e9a7ecb54f8ed8a8 (
plain)
1
2
3
4
5
6
7
8
|
// Calls a bindings outside of FindProxyForURL(). This causes the code to
// get exercised during initialization.
var x = myIpAddress();
function FindProxyForURL(url, host) {
return "PROXY " + x + ":80";
}
|