- add sources.
[platform/framework/web/crosswalk.git] / src / net / data / proxy_resolver_v8_tracing_unittest / too_many_empty_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 < 1000; i++) {
9     alert('');
10   }
11
12   return "PROXY foo:" + g_iteration;
13 }