blob: 564e30ec63871f784378cf2f24267bd59b88a7e9 [file] [log] [blame]
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;
}