You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For prerendered pages, in Chrome's current implementation it will always defer running any Performance Observer callbacks until after the page has been activated.
However, I'm not sure if we can guarantee that will always be the case (spec changes, browser bugs, etc.), so I think it makes sense to defer handling any Performance Observer callbacks until after activation.
If callbacks are handled prior to activation then activationStart will always be 0, and thus any calculations made using it will be incorrect.
The text was updated successfully, but these errors were encountered:
For prerendered pages, in Chrome's current implementation it will always defer running any Performance Observer callbacks until after the page has been activated.
However, I'm not sure if we can guarantee that will always be the case (spec changes, browser bugs, etc.), so I think it makes sense to defer handling any Performance Observer callbacks until after activation.
If callbacks are handled prior to activation then
activationStart
will always be 0, and thus any calculations made using it will be incorrect.The text was updated successfully, but these errors were encountered: