performance-bookmarklet icon indicating copy to clipboard operation
performance-bookmarklet copied to clipboard

Add DOM Content interactive duration

Open micmro opened this issue 7 years ago • 0 comments

There is a domContentLoaded mark in the navigation timing, but it would be good to calculate it relative to domLoading.

ref: https://developers.google.com/web/fundamentals/performance/critical-rendering-path/measure-crp

var t = window.performance.timing,
          interactive = t.domInteractive - t.domLoading,
          dcl = t.domContentLoadedEventStart - t.domLoading,
          complete = t.domComplete - t.domLoading;

micmro avatar Oct 21 '16 08:10 micmro