8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
// 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";
|
|
}
|