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