RE: [PerformanceTimeline] Returning Navigation Timing attributes in High Resolution Time

> From my perspective I think it's going to be problematic if we can't compare Navigation Timing and Resource Timing attributes.

You can still compare Navigation Timing and Resource Timing attributes. E.g., if you want the difference between the connectStart of the document and the first resource, you can do the following: 

var resourceList = window.performance.getEntriesByType("resource");
var delta = resourceList[0].connectStart - (window.performance.timing.connectStart - window.performance.timing.navigationStart);

Jatinder

Received on Wednesday, 11 April 2012 18:25:55 UTC