repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Supervised user whitelists: Cleanup
[chromium-blink-merge.git]
/
net
/
data
/
proxy_resolver_v8_unittest
/
binding_from_global.js
blob
91bbcf2378ff2f4fd80d4ed1e9a7ecb54f8ed8a8
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
}