Hello First up, I know it’s been said to death but thanks everyone (Pat especially) a bundle for the awesome site, advice, community, and tools.
I’m working on implementing a HAR file parser and thought it could be cool if the start render time was available in a WPT HAR export. I realise it’s not part of the HAR 1.1/1.2 spec, so it would need to be optional (similar to the _pageSpeed score).
Instead of nagging I thought I’d have a crack at it, and it seems to work by modifying www/webpagetest/export.php, line 133 from:
$pd['pageTimings'] = array( 'onLoad' => $data['docTime'], 'onContentLoad' => -1 );
to
$pd['pageTimings'] = array( 'onLoad' => $data['docTime'], 'onContentLoad' => -1, '_startRender' => $data['render'] );
Does this seem like the correct approach and does it make sense to include it? If so I could check it in, but I think I have a read only copy of the source… (I followed Google Code Archive - Long-term storage for Google Code Project Hosting. - excuse my inexperience).
Thanks!
Pete