Sign in
mojo
/
mojo-tools
/
1683c243b44c4593eaa2b35bc34ff0de50302039
/
.
/
net
/
data
/
proxy_resolver_v8_unittest
/
binding_from_global.js
blob: 91bbcf2378ff2f4fd80d4ed1e9a7ecb54f8ed8a8 [
file
] [
log
] [
blame
]
// 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"
;
}