I've been looking at the timing.navigation api and it looks like the standard way to measure the page load time is: timing.loadEventEnd - timing.navigationStart
From the WebPagetest docs: The Load Time is measured as the time from the start of the initial navigation until the beginning of the window load event (onload).
My question is two part: Is the WebPagetest load time calculation equivalent to: timing.loadEventStart - timing.navigationStart ?
And, if it is equivalent to the above, do we have a discrepancy between what it does and others in the industry?