- From: Jatinder Mann <jmann@microsoft.com>
- Date: Wed, 11 Apr 2012 18:24:54 +0000
- To: Andy Davies <dajdavies@gmail.com>, "public-web-perf@w3.org" <public-web-perf@w3.org>
> 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