Tuesday, May 27, 2014

Firebug vs Firefox's native developer tool - Part 2

Other useful information from Firebug are
  • Amount of data loaded from cache (this value is not shown if “disk cache/memory cache” is turned off via about:config
  • Onload time. 

While some active object (such as chartbeat) would continue to run, "onload" time is the time taken for page to load fully in the first time – the time that the “spinning” icon stopped.



Firebug vs Firefox's native developer tool

I think Firebug gives me more accurate info regarding object fetch time.

For example, this URL, http://platform.twitter.com/widgets.js, overall taken 1.43s to load.

According to Firefox’s developer tool, 914ms of that is for “connecting….”.


Firebug however tell me that overall it tooks 1.41s to load the object and of those 914ms is in blocking state. 

If multiple requests are to be sent to the same server IP, they are queuing up and time spent in queue is “blocking” time.

Without this clarification, one could wrongly interpret “Connecting…” time as the time taken purely for 3-way handshaking.