Ok, so these are actually the same metrics that Google Chrome shows you when you hover over one of the lines in the Network tab of their debugger. This is how they've named them (re-ordered chronologically and kept original order in numbers):
timing.loadEventStart - timing.navigationStart,
timing.domainLookupEnd - timing.domainLookupStart,
timing.connectEnd - timing.connectStart,
timing.responseStart - timing.requestStart,
timing.responseEnd - timing.responseStart,
timing.fetchStart - timing.navigationStart
I think we ought to read the specs carefully and experiment a little until we figure out precisely what each of these intervals measures and what sort of things it can usefully indicate. It would be good to come up with descriptive names for each of them.
If you want to give it a shot, you can use this gist to get the data in a way that won't break things on older browsers: https://gist.github.com/4174695I'll be doing so right now as I think this is very important and useful.Dan