gn format: Fix and enable a few more tests
[chromium-blink-merge.git] / net / data / proxy_resolver_v8_tracing_unittest / global_sideffects1.js
blob251af9f754621ddec247f294908015f062cd88c6
1 var g_iteration = 0;
3 function FindProxyForURL(url, host) {
4   g_iteration++;
6   var ips = [
7     dnsResolve('host1'),
8     dnsResolve('crazy' + g_iteration)
9   ];
11   alert('iteration: ' + g_iteration);
13   return 'PROXY ' + ips.join('-') + ':100';