Image Search: Move thumbnail JPEG encoding to the renderer.
[chromium-blink-merge.git] / net / data / proxy_resolver_v8_tracing_unittest / too_many_alerts.js
blob564e30ec63871f784378cf2f24267bd59b88a7e9
1 var g_iteration = 0;
3 function FindProxyForURL(url, host) {
4   g_iteration++;
6   dnsResolve(host);
8   for (var i = 0; i < 50; i++) {
9     alert('Gee, all these alerts are silly!');
10   }
12   return "PROXY foo:" + g_iteration;