Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/DOMParser-interface
/
.
/
infrastructure
/
server
/
resources
/
proxy.sub.pac
blob: 78ce023448597ab4296c4e3ac8fae13655f3959c [
file
] [
log
] [
blame
] [
edit
]
function
FindProxyForURL
(
url
,
host
)
{
if
(
dnsDomainIs
(
host
,
'.wpt.test'
))
{
return
"PROXY 127.0.0.1:{{ports[http][0]}}"
}
return
"DIRECT"
;
}