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