- add sources.
[platform/framework/web/crosswalk.git] / src / net / data / proxy_resolver_v8_tracing_unittest / too_many_alerts.js
1 var g_iteration = 0;
2
3 function FindProxyForURL(url, host) {
4   g_iteration++;
5
6   dnsResolve(host);
7
8   for (var i = 0; i < 50; i++) {
9     alert('Gee, all these alerts are silly!');
10   }
11
12   return "PROXY foo:" + g_iteration;
13 }