Tested 2026-07-27 23:55:08 using Chrome 150.0.7871.186 (runtime settings)
The red band on the timeline marks when the main thread was busy with long tasks: moments when the page could not paint or respond, however the video looks.
Download videoUse --filmstrip.showAll to show all filmstrips.









Click a frame to seek the video to that moment. The dot marks frames where the page changed visually.

The whole recording in one image: every pixel is tinted by how often it changed. Amber changed once, deep red changed ten or more times. The scale is fixed, so heatmaps from different runs compare directly.
Flat amber is a page that painted once and stayed put. Red speckle in the shape of the text means the same pixels repainted over and over, usually invisible rendering noise that inflates Last Visual Change and Speed Index. A solid red block is a genuinely restless area, like an ad or a carousel.
How smoothly Chrome delivered frames to the screen during the test. Dropped counts only frames Chrome flags as affecting smoothness. On mostly-static pages the longest gap includes idle time where there was simply nothing to draw.
Rendering was not meaningfully delayed. First paint landed at 904 ms on a 423 ms first byte; none of the 1 render-blocking request held it up: it loaded after the paint. The largest paint followed at 1.260 s. The LCP image itself was downloaded by 946 ms; the wait was render work, not the network.
Style the browser had to recalculate before it could paint: many elements or a lot of time spent here points at expensive CSS on the critical rendering path. The recalculation count and the largest single one tell the two problems apart: one massive style change touching most of the page (few recalculations, the largest close to the total) needs different medicine than thousands of tiny ones (many recalculations, each tiny).
Style recalculation is not holding up your paint. 70 ms of restyling before the page painted, 7.7 % of the time to First Contentful Paint. Nothing here needs attention.
The recalculation work before first paint is 7.7 % of the time to First Contentful Paint.
Blocking requests delay both paints: the browser renders nothing until they arrive, so they push First Contentful Paint and everything after it, including the largest paint (LCP). Requests that block the parser inside the body stall everything after them in the document. Load JavaScript with defer or async, and keep non-critical CSS off the critical path with media attributes. Bars show when each request loaded on a clock that runs to the last paint (the dashed line is FCP, the clock ends at LCP); the gap after the bars is style and layout work.
| Request | When it loaded | Transfer | Download |
|---|---|---|---|
document | 508 ms | 31.2 KB | 508 ms |
index-34f340e24a.jsblocking | loaded after LCP, at 1.328 s | 9.2 KB | 108 ms |
gt-ie9-507b16b6be.jsblocks parser in body | loaded after LCP, at 1.331 s | 1.4 KB | 107 ms |
LCP resource | 165 ms | 18.8 KB | 165 ms |
0315 ms630 msFCP 904 msLCP 1.260 s |
Why the browser had to recalculate style and layout: every DOM/style change invalidates some set of nodes, and the same class or attribute churning over and over is the pattern to hunt. Counts, not milliseconds: the time is in the style recalculation numbers above.
Chase what keeps changing after the page is up. 297 style recalculations and 1 666 layout invalidations fired after first paint, on a page the user was already looking at. The biggest driver is pseudo invalid (6×). Start with the script under "Scripts causing invalidations" that keeps triggering it.
pseudo: invalid6×pseudo: checked2×pseudo: focus2×class: jsl10n-visible1×class: js-enabled1×class: no-js1×Invalidations while the largest paint was still pending, so these delayed it.
| Reason | Style recalculations | Layout |
|---|---|---|
| A node was inserted into the page | 133 | – |
| An element entered layout | – | 922 |
| An SVG element changed | – | 448 |
| Unknown | – | 2 |
| An element's size changed | – | 2 |
Churn on the fully rendered page: wasted work and possible jank, but no paint delay.
| Reason | Style recalculations | Layout |
|---|---|---|
| A node was inserted into the page | 16 | – |
| Related style rule | 125 | – |
| A pseudo-class state changed (:hover, :focus, …) | 10 | – |
| Attribute | 10 | – |
| Control | 1 | – |
| A stylesheet rule changed | 1 | – |
| JavaScript changed an inline styleSet a class instead of writing element.style, so the browser can batch the work. | 1 | – |
| An element entered layout | – | 243 |
| A style change forced layout | – | 46 |
| An element left layout | – | 3 |
The page being constructed and styled for the first render. Expected work, shown for scale.
| Reason | Style recalculations | Layout |
|---|---|---|
| A node was inserted into the page | 12 | – |
| Related style rule | 8 | – |
| A pseudo-class state changed (:hover, :focus, …) | 2 | – |
| Control | 3 | – |
| A stylesheet rule changed | 1 | – |
| An animation updated stylesAnimate transform and opacity so the compositor can run it off the main thread. | 1 | – |
| An element entered layout | – | 604 |
| An element left layout | – | 11 |
| Unknown | – | 2 |
| An element's size changed | – | 1 |
5 animations run on the main thread instead of on the browser's fast path that animates without blocking other page work (the compositor); they can make the rendering you see above janky. See them on the CPU tab.
The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 9.2.1.
decodingAsyncThe page has 1 image (out of 1) without a decoding hint. Add decoding="async" to non-critical images so the browser can decode them off the main thread.
Setting decoding="async" on an <img> tells the browser it can decode the image off the main thread, which keeps the page responsive to user interactions while images are being processed. The default ("auto") leaves the choice to the browser. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#decoding
modernImageFormatsThe page ships 1 image (out of 1) in JPEG/PNG/GIF without a modern alternative. Wrap them in a <picture> with a <source type="image/avif"> or "image/webp" before the legacy <img>, or serve modern formats from your image pipeline directly. AVIF and WebP usually deliver 25–50% smaller files at the same quality.
AVIF and WebP routinely deliver 25–50% smaller files than JPEG and PNG at the same perceived quality, and every browser version still under support understands at least one of them. Ship modern formats either through a <picture> element with <source type="image/avif"> / "image/webp" entries in front of the legacy <img>, or directly from a content-negotiating image pipeline that returns AVIF / WebP when the client accepts it. https://web.dev/articles/serve-images-webp
longTasksThe page has 4 CPU long tasks with the total of 667 ms. The total blocking time is 227 ms and 2 long tasks before first contentful paint with total time of 340 ms. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks.
Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler.
avoidRenderBlockingThe page has 1 blocking requests and 1 in body parser blocking (2 JavaScript and 0 CSS).
The critical rendering path is what the browser needs to do to start rendering the page. Every file requested inside of the head element will postpone the rendering of the page, because the browser need to do the request. Avoid loading JavaScript synchronously inside of the head (you should not need JavaScript to render the page), request files from the same domain as the main document (to avoid DNS lookups) and inline CSS for really fast rendering and a short rendering path.
avoidScalingImagesThe page has 1 image that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.
It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one.
cacheHeadersLongThe page has 4 requests that have a shorter cache time than one year (but still a cache time).
Setting a cache header is good. Setting a long cache header (a year) is even better because the asset will stay in the browser cache across visits. For content-hashed URLs (e.g. app.4af2.css) you can safely use Cache-Control: max-age=31536000, immutable. For unversioned URLs that may change, use a revalidating strategy instead.
viewportThe viewport meta tag does not contain width=device-width, the browser may use a desktop-width fallback.
The viewport meta tag tells the browser how to lay out the page on small screens. Without it (or without width=device-width) the page is rendered at a desktop fallback width and scaled down, which makes text unreadable on mobile. Disabling zoom (user-scalable=no, maximum-scale<=1) is also an accessibility regression. https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag
unnecessaryHeadersThere are 5 responses that sets both a max-age and expires header. There are 6 responses that sets a server header.
Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.
referrerPolicyNo <meta name="referrer"> tag was found on the page. Set a Referrer-Policy response header (preferred) or add a meta tag, for example <meta name="referrer" content="strict-origin-when-cross-origin">.
Without an explicit referrer policy the browser falls back to the user-agent default and may leak the full URL of the previous page (including query strings) to every cross-origin request. Set a Referrer-Policy response header (preferred) or a <meta name="referrer"> tag in the document. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
contentSecurityPolicyHeaderSet a Content-Security-Policy header to mitigate cross-site scripting attacks. You can start with a Content-Security-Policy-Report-Only header, which only reports violations rather than blocking them.
A Content-Security-Policy response header tells the browser which sources of script, style, and other content are allowed. The most effective form is a strict CSP using nonces or hashes together with strict-dynamic; the worst is a missing header, with unsafe-inline and unsafe-eval close behind. https://web.dev/articles/strict-csp
crossOriginEmbedderPolicyHeaderSet a Cross-Origin-Embedder-Policy header (typically require-corp or credentialless) on the document response to control cross-origin embedding.
Cross-Origin-Embedder-Policy (COEP) makes the page refuse to load cross-origin subresources unless they explicitly opt in via CORP or CORS. Together with Cross-Origin-Opener-Policy it puts the page in a cross-origin isolated context, which mitigates cross-window side-channel attacks (Spectre) and unlocks high-resolution timers and SharedArrayBuffer. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Embedder-Policy
crossOriginOpenerPolicyHeaderSet a Cross-Origin-Opener-Policy header (typically same-origin) on the document response to isolate the page from cross-origin windows.
Cross-Origin-Opener-Policy (COOP) lets a page sever its window-group ties to cross-origin documents that opened it or that it opens. Together with Cross-Origin-Embedder-Policy it puts the page in a cross-origin isolated context, which mitigates cross-window side-channel attacks (Spectre) and unlocks high-resolution timers and SharedArrayBuffer. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Opener-Policy
crossOriginResourcePolicyHeaderSet a Cross-Origin-Resource-Policy header (same-origin, same-site or cross-origin) on the document response to limit who may embed it.
Cross-Origin-Resource-Policy (CORP) is a per-response opt-in that tells the browser which origins are allowed to embed the resource. It blocks cross-origin or cross-site no-cors embedding (img, script, iframe, etc.) and is one of the building blocks of cross-origin isolation. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Resource-Policy
permissionsPolicyHeaderSet a Permissions-Policy header to control which browser features the page can use.
The Permissions-Policy response header (the successor to Feature-Policy) lets a site explicitly opt in or out of powerful browser features such as camera, microphone, geolocation, payment and clipboard. Setting a strict policy reduces the attack surface and limits what embedded third parties can do. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
referrerPolicyHeaderSet a referrer-policy header to make sure you do not leak user information.
Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/.
xContentTypeOptionsHeaderSet X-Content-Type-Options: nosniff on the document response to prevent MIME-sniffing.
X-Content-Type-Options: nosniff prevents browsers from interpreting files as a different MIME type than what is declared in the Content-Type header. This blocks a class of cross-site scripting and content-type confusion attacks and should be set on every response. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
A snapshot of what the browser actually built for this page: the document, how big and deep the DOM tree is and what it kept in storage. Big, deep trees are slower to style and lay out, so the counts Chrome warns about carry a flag.
Document
What the page says it is and how large it rendered.
DOM structure
How much markup the browser has to build, style and lay out.
What the page stored on the client, and the network it was tested on.
Data collected using
Coach-core version 9.2.1. With updated code from
Webappanalyzer 2026-05-04. Use
--browsertime.firefox.includeResponseBodies html or
--browsertime.chrome.includeResponseBodies html to help Wappalyzer find more information about technologies used.
When the page main content is rendered, collected via the Largest Contentful Paint API. Read more about Largest Contentful Paint.
body#www-wikipedia-org > main > div:eq(0) > h1 > spanHow much the page's content shifts as it loads, collected via the Cumulative Layout Shift API.
One shift is 100% of your 0.001 CLS. div:eq(0) moved at 1.626 s. Reserve space for whatever renders into that spot, a fixed height or an aspect-ratio box, so later content stops pushing the page around.
Worst first, showing shifts of 0.01 and up. Each percentage is that shift's exact share of the score.
The shift is spread across many movements below 0.01, none large enough to single out. Check the video or filmstrip to see what moved.
Timing data the server chose to expose through Server-Timing response headers on the main document — typically backend time, cache status or experiment flags.
| Name | Duration | Description |
|---|---|---|
cache | 0 ms | hit-front |
host | 0 ms | cp3070 |
co_id | 0 ms | 1929592331 |
There are no custom configured scripts.
There are no custom extra metrics from scripting.
How the page is built.
| Header | Value |
|---|---|
accept-ranges | bytes |
age | 52053 |
cache-control | s-maxage=86400, must-revalidate, max-age=3600 |
content-encoding | gzip |
content-length | 30635 |
content-type | text/html |
date | Mon, 27 Jul 2026 09:27:36 GMT |
etag | W/"1d629-65738a87fd940" |
last-modified | Wed, 22 Jul 2026 20:05:17 GMT |
nel | { "report_to": "wm_nel", "max_age": 604800, "failure_fraction": 0.05, "success_fraction": 0.0} |
report-to | { "group": "wm_nel", "max_age": 604800, "endpoints": [{ "url": "https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0" }] } |
server | ATS/9.2.13 |
server-timing | cache;desc="hit-front", host;desc="cp3070",co_id;desc="1929592331" |
strict-transport-security | max-age=106384710; includeSubDomains; preload |
x-analytics | |
x-cache | cp3070 miss, cp3070 hit/3271775 |
x-cache-status | hit-front |
x-client-ip | 138.201.135.103 |
x-request-id | 3ae2cf40-bd9b-4a74-9eb2-7694ca8a6e30 |
| URL | Type | Transfer Size | Content Size |
|---|---|---|---|
| https://www.wikipedi...ia-logo-v2@2x.png | image | 37.6 KB | 36.6 KB |
| https://www.wikipedia.org/ | html | 31.2 KB | 117.5 KB |
| https://www.wikipedi...rite-e49fbf32.svg | svg | 18.8 KB | 50.0 KB |
| https://www.wikipedi...dex-34f340e24a.js | javascript | 9.2 KB | 23.6 KB |
| https://www.wikipedi...con/wikipedia.ico | favicon | 1.8 KB | 2.7 KB |
| https://www.wikipedi...ie9-507b16b6be.js | javascript | 1.4 KB | 580 B |
Transfer size100.1 KB
Content size230.9 KB
Requests6
| Content | Header Size | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| html | 0 b | 31.2 KB | 117.5 KB | 1 |
| javascript | 0 b | 10.6 KB | 24.1 KB | 2 |
| image | 0 b | 37.6 KB | 36.6 KB | 1 |
| favicon | 0 b | 1.8 KB | 2.7 KB | 1 |
| svg | 0 b | 18.8 KB | 50.0 KB | 1 |
| Total | 0 b | 100.1 KB | 230.9 KB | 6 |
| Domain | Total download time | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| www.wikipedia.org | 1.246 s | 100.1 KB | 230.9 KB | 6 |
| type | min | median | max |
|---|---|---|---|
| Expires | 1 hour | 1 day | 1 year |
| Last modified | 4 days | 4 days | 3 weeks |
Includes requests done after load event end.
| Content | Transfer Size | Requests |
|---|---|---|
| html | 0 b | 0 |
| css | 0 b | 0 |
| javascript | 0 b | 0 |
| image | 0 b | 0 |
| font | 0 b | 0 |
| favicon | 1.8 KB | 1 |
| Total | 1.8 KB | 1 |
Includes requests done after DOM content loaded.
| Content | Transfer Size | Requests |
|---|---|---|
| html | 0 b | 0 |
| css | 0 b | 0 |
| javascript | 0 b | 0 |
| image | 0 b | 0 |
| font | 0 b | 0 |
| favicon | 1.8 KB | 1 |
| Total | 1.8 KB | 1 |
Tasks ≥ 50 ms blocking the main thread, collected via the Long Task API.
A long animation frame (LOAF) is a frame that took ≥ 50 ms from input to the next paint. The part beyond the threshold is blocking time, the number that hurts Interaction to Next Paint and Total Blocking Time. Break long tasks up (scheduler.yield(), smaller chunks) or move the work off the main thread. Read more about the Long Animation Frames API.
| Script | Frames | Time running | Blocking (share by run time) | Forced style & layout | Triggered by |
|---|---|---|---|---|---|
| www.wikipedia.org | 1 | 7.1 ms | 3.1 ms | – | script tag |
| index-34f340e24a.js | 2 | 49.7 ms | 1.3 ms | – | event handler, script tag |
A frame's blocking time is split between its scripts by their share of the frame's work, capped at each script's own run time — blocking from work no script owns (HTML parsing, browser internals) stays unattributed. The per-script blocking view below uses the same attribution.
The browser did not report which script was responsible for this frame — typically its own style/layout work, or a cross-origin script it will not name.
The browser did not report which script was responsible for this frame — typically its own style/layout work, or a cross-origin script it will not name.
1 more long frame carried no blocking time (nothing ran past the 50 ms threshold) — long, but harmless to INP and TBT.
How much each script blocked the main thread, derived from the Long Animation Frame API. Each frame's blocking time is split between its scripts by their share of the frame's work, capped at each script's own run time — blocking from work no script owns (HTML parsing, browser internals) is not attributed (older data credits the script that started the frame). The closest answer to "which script should I fix to improve TBT" the platform exposes.
Total Blocking Time attributed per script from the Chrome trace: every main-thread task longer than 50 ms blocks input for the remainder, and each blocking task is credited to the script whose own code ran the longest during that task.
All main-thread work during the full page load, not just the share that blocked input. Calculated from the Chrome trace.
parseHTMLstyleLayoutscriptParseCompilescriptEvaluationpaintCompositeRendergarbageCollectionotherThe functions where main-thread JavaScript time was actually spent, sampled by Chrome's JavaScript profiler. Self time is spent in the function itself; total time includes the functions it called. For loader/dispatcher functions whose total dwarfs their self time, the runs line shows the top functions and modules (up to five, ≥ 1 ms) the total was actually spent running.
| Function | Where | Self time | Total time |
|---|---|---|---|
(anonymous) | https://www.wikipedia.org/ | 5.9 ms | 5.9 ms |
d | https://www.wikipedia.org/portal/wikipedia.org/assets/js/index-34f340e24a.js | 5.1 ms | 5.1 ms |
(anonymous) | 4.5 ms | 4.5 ms | |
measure | 4.4 ms | 4.4 ms | |
mark | 4.0 ms | 4.0 ms | |
(anonymous) | 3.0 ms | 3.0 ms | |
(anonymous) | https://www.wikipedia.org/portal/wikipedia.org/assets/js/index-34f340e24a.js | 2.8 ms | 2.8 ms |
(anonymous) | https://www.wikipedia.org/portal/wikipedia.org/assets/js/index-34f340e24a.js | 2.7 ms | 2.7 ms |
(anonymous) | https://www.wikipedia.org/portal/wikipedia.org/assets/js/index-34f340e24a.js | 2.7 ms | 2.8 ms |
removeChild | 2.4 ms | 2.4 ms | |
querySelectorAll | 2.1 ms | 2.1 ms | |
(anonymous) | 2.1 ms | 2.1 ms | |
get | https://www.wikipedia.org/portal/wikipedia.org/assets/js/index-34f340e24a.js | 2.0 ms | 2.0 ms |
setAttribute | 1.9 ms | 1.9 ms | |
(anonymous) | https://www.wikipedia.org/ | 1.8 ms | 1.8 ms |
How much setTimeout/setInterval work the page runs, credited to the script that scheduled each timer. Many zero-delay timers mean work sliced into a machine-gun of tiny tasks; repeating timers are polling.
| Set by | Delay | Type | Times set | Times fired | Fire time |
|---|---|---|---|---|---|
| https://www.wikipedia.org/:941 | 1000 ms | once | 1 | 1 | 0.9 ms |
Main-thread CPU time from the Chrome trace split by domain. First party is wikipedia.org.
Animations that fell back from the compositor to the main thread, blocking each frame instead of running on the GPU.
Each chip below is a CSS property the page tried to animate that Chrome couldn't hand to the compositor. Swap it for a transform or opacity equivalent where you can.
border-bottom-color1×border-left-color1×box-shadow1×border-right-color1×border-top-color1×Want to dig deeper? Download the Chrome trace and drag-and-drop it into Performance in DevTools.