Reputation: 7703
In chrome devtools performance tab, we can see the frames and tasks which are happening inside that each single frame, as per my understanding the tasks are completed during the start of the frame then frame is painted.
But in the below screenshot, I am seeing some task(timer fired is executing in the frame completion line)
could anyone explain why this happens
Upvotes: 0
Views: 83
Reputation: 7703
After discussed with one of the chrome team member, found that this is the bug in the performance dev tool panel, where the tasks and frames are not related in the timeline,
bug detail link: https://bugs.chromium.org/p/chromium/issues/detail?id=798755&q=frame&can=4
Upvotes: 1