Within the Chrome DevTool’s main tabs, you found find the “Perfomance” tab. The performance utility can make recordings of your web pages activities and highlight which runtime processes it is undergoing and for how long (Image 1).
If a performance recording showed a spike in rendering time, it might be due to a layout reflow. Diving deeper, if the specific rendering activity is determined to be “recalculation”, it is a reflow (Image 2).
When the reflow has been detected, it is possible to determine point of origination within the code, by setting the focus to the “recalculation” process (Image 3).
The performance utility has main other valuable features. If you would like to learn more, I would suggest checking out the official source: Analyze runtime performance.