Sign in
◑
Theme
mojo
/
mojo-tools
/
0d3b4d2c9a4ec923947e9a18c19f363ddd73a9bf
/
.
/
net
/
data
/
proxy_resolver_v8_tracing_unittest
/
too_many_alerts.js
blob: 564e30ec63871f784378cf2f24267bd59b88a7e9 [
file
]
var
g_iteration
=
0
;
function
FindProxyForURL
(
url
,
host
)
{
g_iteration
++;
dnsResolve
(
host
);
for
(
var
i
=
0
;
i
<
50
;
i
++)
{
alert
(
'Gee, all these alerts are silly!'
);
}
return
"PROXY foo:"
+
g_iteration
;
}