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