PerformanceResourceTiming.domainLookupEnd - час після завершення пошук доменних імен для ресурсу.
PerformanceResourceTiming.domainLookupEnd;
PerformanceResourceTiming - об'єкт PerformanceResourceTiming.
domainLookupEnd властивість об'єкта PerformanceResourceTiming яка містить час в мілісекундах коли браузер завершує пошук доменних імен для ресурсу в поточній веб-сторінці.
var prt=performance.getEntriesByType('resource');
alert(prt[0].domainLookupEnd);
var prt=performance.getEntriesByType('resource');
var s='';
for(var i=0;i<prt.length;i++)
s+=i+' name= '+prt[i].name+', domainLookupEnd='+prt[i].domainLookupEnd+'\n';
alert(s);