What does the Performance tab do?
The Performance tab in Chrome DevTools records and shows what happens in the browser at the engine level while a page loads and runs.
What it does:
- Records a timeline of page activity
- parsing, rendering, JS execution, network requests, GC, events, and so on
- lets you see when and why slowdowns happen
- Shows JavaScript loading and execution
- which scripts ran, how long they took, whether they blocked the main thread
- Profiles rendering
- Layout, Paint, Composite, which elements triggered recalculations or repaints
- Reveals blocking
- long tasks (> 50 ms), main thread blocking
- helps you understand where and why the interface "did not respond"
- Shows key Web Vitals (LCP, FCP, TTI)
- you can find them right on the timeline
How to use it:
- Open the Performance tab
- Click the ● Record button
- Reload the page or perform actions
- Click ■ Stop
- Study the timeline:
- frames (FPS) at the top
- below: script execution time, rendering, layout, paint
- click on sections to see details (exactly what ran and why)
What it gives you:
- an exact understanding of where the site slows down
- which tasks block the thread
- which events trigger unnecessary layout/paint
- helps optimize load time and responsiveness
Conclusion: The Performance tab is like an X-ray for the browser: it shows exactly how your site lives inside and where it loses speed.
Short Answer
Interview readyPremium
A concise answer to help you respond confidently on this topic during an interview.