«   Previous tip Next tip   »

Chrome DevTools: Easily identify key rendering milestones with Paint Timing Markers

Last updated: 20th July 2020
Easily identify key rendering milestones with Paint Timing Markers

The Paint Timing Markers feature allows you to view colour-coded markings in the Performance Panel. These Timings include:

You can correlate these markings with the rendering data shown in a Performance Panel profile to understand which resources contributed to certain events.

🔥️  Tip: Did you know you can programmatically access Paint Timing information in JavaScript? Try code like:

performance.getEntriesByType('paint')

I've written an article about this subject in: Improving Performance with the Paint Timing API.

«   Previous tip Next tip   »

Sign up to receive a developer tip, in the form of a gif, in your inbox each week