Update to Start Render

I just pushed an update that changes the behavior of how the “Start Render” measurement works. It used to mark the time at which something could display on the page (the content dimensions would be non-zero) but it didn’t mean that anything was ACTUALLY displayed.

The update moves the measurement to when something actually gets drawn to the screen for the first time. I can’t guarantee that the “something” is anything the user cares about (css background image for example) but I can guarantee that it is the first time that anything gets rendered to the screen. I also added in a screen shot of what the screen looked like at the start render time so you can see what was displayed (if it looks blank it isn’t really, may just be compressed-away by heavy jpeg compression of the screen shot or your background color is just off-white).

I also added in a screen shot for the “DOM Element time” so you can see what the screen looked like at the time that measurement point was registered but that measurement doesn’t get a lot of use.

Thanks,

-Pat

Great update! Having a lot of fun and seeing a lot of room for improvement here for web sites…

This page is not recording a Start Render time?
http://travel.ian.com/hotel/search?cid=40

Thanks, I’ll take a look and see if the render doesn’t happen until after the document complete (a condition I probably need to check for and account for in the measurement).

I hardened the code a bit more and added some redundancy so things should be better now. It doesn’t look like it is specific to that url, just that start render would sometimes get delayed or not register (seemed to happen very rarely but saw it on aa couple of different tests that people ran).

hi Pat,

can you update the browser plugin version of PageTest to include this improvement to Start Render?
Would be a-w-e-s-o-m-e !

thx
Aaron

I just released the new pagetest to sourceforge (215) and you can download it here: Download Pagetest from SourceForge.net

Changes since 211 (when I moved to my own Trac) are available here: http://dev.webpagetest.org/pagetest/report/6

At some point I’ll move the downloads off of sourceforge as well because it’s gotten to be a royal pain to manage with the new UI.

Thanks,

-Pat

Just installed 215 release and works perfectly.

About Start Render vs Doc Complete…
Is it not possible that indeed SR load time is higher than DC?
This would mean that the browser gets to onload before rendering anything on the page.
If a web page is created using lots of DIVs, all nested and ugly (you know the kind of HTML I’m taling about), and needs a long time to render, would it not be possible for the actual SR to be higer than DC?

Thanks Pat!

  • Aaron

It is possible for SR to be after DC 9particularly on really fast connections where the browser is crazily requesting stuff) because IE does some lazy painting and layout if too much is going on. I just want to make sure it really is the case and it’s not something I’m artificially measuring incorrectly when it does happen :slight_smile:

I’m pretty confident that the start render code is very solid at this point but questionable examples are always welcome.

-Pat