2

I'm trying to figure out how the network works in Chrome Developer Tool. Finish time 2.49 more than Load time 1.83

I was just wondering why is that 'Finish' time is longer than 'Load' time? Don't they both represent response time? What's the difference between them? What effect would this have on the time to render?

3
  • 1
    Possible duplicate of Website response time :Difference between "load" and "finish" ,
    – damio
    Commented Apr 14, 2016 at 22:58
  • It did not answer ' What effect would this have on the time to render?' Commented Apr 14, 2016 at 22:59
  • It seems this 'Finished' time in Chrome devtools includes the asynchronously loading(non blocking) objects/elements on the page which may continue downloading way after the onload event for page has fired. - madballoonist in the linked answer
    – damio
    Commented Apr 14, 2016 at 23:01

0