Page summary

https://xeltacut.xelta.ai

Tested 2026-08-12 07:49:49 using Chrome 150.0.7871.46 (runtime settings)

SummaryWaterfallMetricsRenderingCoachPageXrayCPUThird party

This page is fast to paint, visually stable and follows best practices, but a little janky to interact with and weak on user privacy.

85 / 100
Coach overall
85 / 100
Performance
92 / 100
Best practice
81 / 100
Privacy

How it loaded →

0 → 1.600 s · median run
Frame at 0 ms
start
Frame at 600 ms
600 ms
Frame at 800 ms
800 ms
Frame at 1100 ms
1.100 s
Frame at 1400 ms
Largest paint1.400 s
Frame at 1600 ms
Complete1.600 s
500 ms
First Visual Change
1.431 s
Speed Index
1.600 s
Visual Complete 85%
1.600 s
Last Visual Change
TTFB225 msLCP1.380 sTBT255 msCLS0.00

What to act on · top recommendations

Avoid redirecting the main document

0 / 100

The main document gets redirected 1 time(s). Remove those redirect and make the page faster!

Total JavaScript size shouldn't be too big

0 / 100

The total JavaScript transfer size is 503.7 kB and the uncompressed size is 1.8 MB. This is totally crazy! There is really room for improvement here.

Avoid extra requests by setting cache headers

20 / 100

The page has 8 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 14.5 kB the next access.

Google Web Vitals

min · median · mean · max of 1 run
MetricMinMedianMeanMax
Time To First Byte (TTFB)225 ms225 ms225 ms225 ms
Largest Contentful Paint (LCP)1.380 s1.380 s1.380 s1.380 s
Cumulative Layout Shift (CLS)0000

Visual Metrics

min · median · mean · max of 1 run
MetricMinMedianMeanMax
First visual change500 ms500 ms500 ms500 ms
Last visual change1.600 s1.600 s1.600 s1.600 s
Speed index1.431 s1.431 s1.431 s1.431 s
Visual readiness1.100 s1.100 s1.100 s1.100 s
Visual complete 851.600 s1.600 s1.600 s1.600 s
Visual complete 951.600 s1.600 s1.600 s1.600 s
Visual complete 991.600 s1.600 s1.600 s1.600 s

CPU

min · median · mean · max of 1 run
MetricMinMedianMeanMax
Total Blocking Time255 ms255 ms255 ms255 ms
Max Potential FID239 ms239 ms239 ms239 ms
CPU long tasks 3333
CPU last long task happens at1.167 s1.167 s1.167 s1.167 s

More metrics

min · median · mean · max of 1 run
MetricMinMedianMeanMax
First paint472 ms472 ms472 ms472 ms
Load event end445 ms445 ms445 ms445 ms

Waterfall

Run 1 SpeedIndex median

First paintFCPLCPDOMContentLoadedDOM interactiveLoadRender-blockingRedirectError

Rendering

Run 1 · median
0.000 s
0s0.5s1s1.5s

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 video

Filmstrip

12 frames

Use --filmstrip.showAll to show all filmstrips.

Frame at 0 ms
0 ms
0 %
Frame at 500 ms
500 ms
3 %
Frame at 600 ms
600 ms
3 %
Frame at 700 ms
700 ms
3 %
Frame at 800 ms
800 ms
3 %
Frame at 900 ms
900 ms
3 %
Frame at 1.000 s
1.000 s
3 %
Frame at 1.100 s
1.100 s
3 %
Frame at 1.200 s
1.200 s
3 %
Frame at 1.400 s
1.400 s
69 %
Frame at 1.500 s
1.500 s
72 %
Frame at 1.600 s
1.600 s
100 %

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

Why was rendering delayed?

Rendering was not meaningfully delayed. First paint landed at 472 ms on a 225 ms first byte; the 1 render-blocking request was done by 373 ms. The largest paint followed at 1.380 s.

Want to see how much CSS style-recalculation work delayed FCP and LCP, plus CPU long tasks? Run with --cpu.

Render blocking requests

1 request · 20.0 KB

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. Web fonts are context, not blockers: text renders invisible or in a fallback face while they load, so a font finishing after a paint is the classic reason text changed late.

RequestWhen it loadedTransferDownload
document
xeltacut.xelta.ai · TTFB 225 ms
153 ms
847 B151 ms
css · xeltacut.xelta.ai
107 ms
20.0 KB107 ms
web font · xeltacut.xelta.ai
131 ms
48.0 KB131 ms
0345 ms690 ms1.035 sFCP 472 msLCP 1.380 s

Coach

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.

Performance advice

85
2 errors7 warnings1 info
warn(0)Avoid redirecting the main documentdocumentRedirect

The main document gets redirected 1 time(s). Remove those redirect and make the page faster!

You should never ever redirect the main document, because it will make the page load slower for the user. Well, you should redirect the user if the user tries to use HTTP and there's an HTTPS version of the page. The coach checks for that. :)

Offenders
warn(0)Total JavaScript size shouldn't be too bigjavascriptSize
warn(20)Avoid extra requests by setting cache headerscacheHeaders

The page has 8 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 14.5 kB the next access.

The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.

Offenders
warn(40)Avoid CPU Long TaskslongTasks

The page has 3 CPU long tasks with the total of 405 ms. The total blocking time is 255 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.

Offenders
  • self
  • self
  • self
warn(90)Avoid doing redirectsassetsRedirects

The page has 1 redirect. 1 of the redirects are from the base domain, please fix them!

A redirect is one extra step for the user to download the asset. Avoid that if you want to be fast. Redirects are even more of a showstopper on mobile.

Offenders
warn(90)Always compress text contentcompressAssets

The page has 1 request that are served uncompressed. You could save a lot of bytes by sending them compressed instead.

In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith.

Offenders
URLTransferContent
https://xeltacut.xelta.ai/projects8.5 KB35.8 KB
error(90)Avoid missing and error requestsresponseOk

The page has 1 error response. The page has 1 response with code 402.

Your page should never request assets that return a 400 or 500 error. These requests are never cached. If that happens something is broken. Please fix it.

Offenders
infoLong cache headers is goodcacheHeadersLong

The page has 6 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.

Offenders
error(94)Avoid using incorrect mime typesmimeTypes

The page has 6 misconfigured mime types.

It's not a great idea to let browsers guess content types (content sniffing), in some cases it can actually be a security risk.

Offenders
warn(95)Inline CSS for faster first renderinlineCss

The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens.

In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.

Best practice advice

92
1 warning1 info
warn(50)Avoid too many third party requeststhirdParty

The page do 13% requests to third party domains (4 requests and 26 kB). First party is 27 requests and 1.8 MB. The regex .*xelta.* was used to calculate first/third party requests.

Do not load most of your content from third party URLs.

infoAvoid unnecessary headersunnecessaryHeaders

There are 31 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.

Offenders

Privacy advice

81
5 warnings2 info
warn(0)Declare a referrer policy on the documentreferrerPolicy

No <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

warn(0)Use a strict Content-Security-Policy header to mitigate cross-site scripting (XSS) attacks.contentSecurityPolicyHeader

Set 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

Offenders
infoSet a Cross-Origin-Embedder-Policy header so cross-origin subresources opt in to being embedded.crossOriginEmbedderPolicyHeader

Set 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

Offenders
warn(0)Set a Cross-Origin-Opener-Policy header to isolate the page from cross-origin windows.crossOriginOpenerPolicyHeader

Set 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

Offenders
infoSet a Cross-Origin-Resource-Policy header to limit who may embed the page.crossOriginResourcePolicyHeader

Set 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

Offenders
warn(0)Set a Permissions-Policy header to control which browser features the page can use.permissionsPolicyHeader

Set 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

Offenders
warn(97)Do not share user data with third parties.thirdPartyPrivacy

The page has 3% requests that are 3rd party (1 requests with a size of 11.6 kB). The page do 1 utility request and uses 1 utility tool.

Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests.

Offenders

Page info

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.

Page info

Document

What the page says it is and how large it rendered.

TitleXeltaCutThe document title, shown in the browser tab and used by search results.
Layout viewport1350 × 726 pxThe width the page laid out at, and the full height of the rendered document.

DOM structure

How much markup the browser has to build, style and lay out.

DOM elements117Total HTML elements. Fewer means less for the browser to style, lay out and paint.
Avg DOM depth4How deeply elements are nested on average.
Max DOM depth9The deepest nesting on the page. Deep branches cost more style recalculation.
Iframes0No embedded documents on this page.
Script tags26Number of script elements. More scripts usually means more main-thread work.

Storage and connection

What the page stored on the client, and the network it was tested on.

Local storage44 BData the page saved in localStorage, kept across visits.
Session storage116 BData kept in sessionStorage for this tab session only.
Connection type4GWhat the Network Information API reported for the test connection.

Technologies used to build the page

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.

Detected technologies

4 technologies

Third-party tools

1 tool

Data collected using Third Party Web version 0.29.2.

Utility
  • Cloudflare

Data from run 1

Visual Metrics

Visual milestones

all times from navigation start
Speed Index1.43 show quickly the page looked done
First Visual Change0.50 sfirst paint reaches the screen
Last Visual Change1.60 sscreen stops changing · 1.10 s after first
nothing painted yet
First Visual Change0.50 s
Visual Complete 85% · Visual Complete 95% · Visual Complete 99% · Last Visual Change1.60 s
Visual Readiness1.10 s· first to last change
00.5 s1.0 s1.5 s
Content milestones
Perception index
Visual progress
Visual progress at 0 s0.0s
Visual progress at 0.6 s0.6s
Visual progress at 0.7 s0.7s
Visual progress at 0.9 s0.9s
Visual progress at 1 s1.0s
Visual progress at 1.2 s1.2s
Visual progress at 1.4 s1.4s
Visual progress at 1.6 s1.6s
FCP0.47s
LCP1.38s
VC851.60s
Long tasks
0.0s0.3s0.6s1.0s1.3s1.6s

Google Web Vitals

from run 1
225 msTTFB
Good
255 msTBT
Needs improvement

Largest Contentful Paint

When the page main content is rendered, collected via the Largest Contentful Paint API. Read more about Largest Contentful Paint.

1.380 sLCP render time

Phase breakdown

  • TTFB225 ms
  • Resource load delay0 ms
  • Resource load duration0 ms
  • Element render delay1.156 s

Element

Element type
<h1>
Size (w × h)
6696
Load time
0 ms

DOM path

body > div:eq(1) > div > div:eq(0) > div > h1
LCP

The LCP element is highlighted in the screenshot. If nothing is highlighted the element was removed before the screenshot or the LCP API couldn't find it.

Cumulative Layout Shift

How much the page's content shifts as it loads, collected via the Cumulative Layout Shift API.

0.000cumulative layout shift score

No layout shifts were detected on this page.

Browser Metrics

Navigation Timing
Extra timings

Server timings

Timing data the server chose to expose through Server-Timing response headers on the main document — typically backend time, cache status or experiment flags.

Server timings

4 entries
NameDurationDescription
cfCacheStatus0 msDYNAMIC
cfEdge7 ms
cfOrigin0 ms
cfWorker34 ms

Custom metrics collected through JavaScript

There are no custom configured scripts.

Extra metrics collected using scripting

There are no custom extra metrics from scripting.

PageXray

How the page is built.

HTTP versionHTTP/2.0
Total requests31
Total domains4
Transfer size1.8 MB
Content size6.2 MB
Missing compression1

Main document

status 200 · 1 redirect

https://xeltacut.xelta.ai/projects

HeaderValue
alt-svch3=":443"; ma=86400
cache-controls-maxage=31536000
cf-cache-statusDYNAMIC
cf-raya29de2c5ea7c0dbf-DEL
content-typetext/html; charset=utf-8
dateWed, 12 Aug 2026 07:49:51 GMT
expect-ctmax-age=86400, enforce
location/projects
nel{"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
referrer-policysame-origin strict-origin-when-cross-origin
report-to{"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=F650NEbP%2B0DchvttYEBVuPrrGjzQinZbKYduGUHgx%2FbnI30xU9D6jU4ESxST9VQ0EB67nm%2Fa1NHQSPwb4c%2BiyyahgAm3rdfjpcwk3Xwx78GlbUjwiCM%2FpAfautl9td9sjqsS"}]}
servercloudflare
server-timingcfCacheStatus;desc="DYNAMIC" cfEdge;dur=5,cfOrigin;dur=0,cfWorker;dur=85
speculation-rules"/cdn-cgi/speculation"
strict-transport-securitymax-age=31536000; includeSubDomains; preload
varyrsc, next-router-state-tree, next-router-prefetch, next-router-segment-prefetch, Accept-Encoding
x-content-type-optionsnosniff
x-edge-served-byAP
x-frame-optionsSAMEORIGIN
x-nextjs-cacheHIT
x-nextjs-prerender1, 1
x-nextjs-stale-time300
x-xss-protection1; mode=block

Response codes

200
2787.1%
204
26.5%
307
13.2%
402
13.2%

Requests and sizes per content type

9 types

Transfer size1.8 MB

  • other67.9%
  • javascript27.1%
  • font2.6%
  • css1.1%
  • image0.47%
  • html0.47%
  • favicon0.27%
  • json0.05%
  • plain0.03%

Content size6.2 MB

  • other68.6%
  • javascript28.0%
  • css1.8%
  • font0.75%
  • html0.57%
  • favicon0.15%
  • image0.10%
  • json0.01%

Requests29

  • javascript44.8%
  • other24.1%
  • image10.3%
  • html3.4%
  • css3.4%
  • font3.4%
  • favicon3.4%
  • json3.4%
  • plain3.4%
ContentHeader SizeTransfer SizeContent SizeRequests
html0 b8.5 KB35.8 KB1
css0 b20.0 KB116.7 KB1
javascript0 b491.9 KB1.7 MB13
image0 b8.6 KB6.5 KB3
font0 b48.0 KB47.3 KB1
favicon0 b4.9 KB9.6 KB1
other0 b1.2 MB4.2 MB7
json0 b1016 B896 B1
plain0 b588 B0 b1
Total0 b1.8 MB6.2 MB29

Data per domain

4 domains
DomainTotal download timeTransfer SizeContent SizeRequests
xeltacut.xelta.ai2.900 s1.7 MB6.1 MB27
cdn.databuddy.cc566 ms13.1 KB36.6 KB1
static.cloudflareinsights.com62 ms11.3 KB30.9 KB1
basket.databuddy.cc950 ms952 B327 B2

Expires & last-modified statistics

typeminmedianmax
Expires0 seconds4 weeks1 year
Last modified3 weeks3 weeks8 weeks

Requests loaded after onLoad event

12 requests

Includes requests done after load event end.

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript0 b0
image8.6 KB3
font0 b0
favicon4.9 KB1
plain588 B1
other1.2 MB6
Total1.2 MB12

Requests loaded after onContentLoad

12 requests

Includes requests done after DOM content loaded.

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript0 b0
image8.6 KB3
font0 b0
favicon4.9 KB1
plain588 B1
other1.2 MB6
Total1.2 MB12

CPU

167 ms of 255 ms total. Defer it, replace it with a lighter alternative, or move its work off the main thread to recover most of your TBT.
Get deeper CPU insight with one extra run
Run with --enableProfileRun to see where main-thread time went, blocking time and CPU cost per script, module and function, forced reflows and frame stability. The data is collected in one extra run, so the timing metrics of your measured runs stay untouched.

Long tasks

Tasks ≥ 50 ms blocking the main thread, collected via the Long Task API.

TBT255 ms
Max potential input delay239 ms
Total long tasks3
Total time405 ms
Last task at1.167 s
Before first paint0 ms0 tasks
Before FCP0 ms0 tasks
Before LCP405 ms3 tasks
After load405 ms3 tasks

Long Animation Frames

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.

Long animation frames5every frame ≥ 50 ms
Blocking time263 msacross all long frames — what hurts INP and TBT
Forced style & layout1.5 msscripts reading layout mid-frame
Blocking before LCP263 msdelaying the largest paint — fix these first
Blocking after load263 msafter the load event — didn't delay page load
Input waiting1 framea real interaction was delayed (INP)

What to fix first

ScriptFramesTime runningBlocking (share by run time)Forced style & layoutTriggered by
b284e8c90acb9c8e.js1239.2 ms166.9 msscript tag
eb93a8df11b8a9c8.js4182.8 ms86 ms1.5 msscript tag, event handler
databuddy.js3rd party128.2 ms1.8 msscript 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.

Long animation frame #1 · 367.1 msat 612.1 ms · before LCP
blocking 255.3 ms
  • Scripts & other work366 ms
  • Animation callbacks0.1 ms
  • Style & layout1 ms
  • Render0 ms
3 scripts ran during this frame
Ran for
113.2 ms
How it started
script tag
Ran for
5.3 ms
Started by
MessagePort.onmessage
How it started
event handler
Source function
O
Position in source
character 7096 into the file (locate it via DevTools → Performance → the Long Animation Frames track)
Ran for
239.2 ms
How it started
script tag
Long animation frame #2 · 91.1 msat 1.232 s · before LCP
blocking 4.8 ms
  • Scripts & other work75.1 ms
  • Animation callbacks0 ms
  • Style & layout16 ms
  • Render0 ms
3 scripts ran during this frame · forced style & layout 1.3 ms
Ran for
6.7 ms
Started by
MessagePort.onmessage
How it started
event handler
Source function
O
Position in source
character 7096 into the file (locate it via DevTools → Performance → the Long Animation Frames track)
databuddy.js3rd party
Ran for
28.2 ms
How it started
script tag
Ran for
38.8 ms
Forced style and layout
1.3 ms
Started by
MessagePort.onmessage
How it started
event handler
Source function
O
Position in source
character 7096 into the file (locate it via DevTools → Performance → the Long Animation Frames track)
Long animation frame #3 · 64.6 msat 1.161 s · before LCP
blocking 2.9 ms
  • Scripts & other work64.4 ms
  • Animation callbacks0 ms
  • Style & layout0.2 ms
  • Render0 ms
2 scripts ran during this frame · forced style & layout 0.2 ms
Ran for
5.6 ms
Forced style and layout
0.2 ms
Started by
MessagePort.onmessage
How it started
event handler
Source function
O
Position in source
character 7096 into the file (locate it via DevTools → Performance → the Long Animation Frames track)
Ran for
5.1 ms
Started by
MessagePort.onmessage
How it started
event handler
Source function
O
Position in source
character 7096 into the file (locate it via DevTools → Performance → the Long Animation Frames track)

2 more long frames carried no blocking time (nothing ran past the 50 ms threshold) — long, but harmless to INP and TBT.

Blocking time per script (browser-reported)

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.

Top scripts blocking the main thread

3 of 3 scripts

Forced layout per script

Each long animation frame reports how much time each script spent forcing synchronous style and layout, i.e. JavaScript reading layout-triggering properties mid-execution. Same actionable answer as forced reflows above but measured directly by the browser instead of inferred from the trace.

Scripts forcing layout

1 of 1 script

Third party

Third party requests categorised by Third party web version 0.29.2.

Third-party requests1
Tools1
Categories1

Categories

1 category

Requests by category1

  • utility1 req · 1 tool100.0%

Third party requests and tools

1 category

Unmatched third party domains

2 domains

Domains that didn't match any tool in Third party web. If you are sure they are third party domains, please do a PR to that project. You can also fine tune the list using --firstParty.

  • cdn.databuddy.cc
  • basket.databuddy.cc

First party vs third party

27 first · 4 third party

Transfer size1.8 MB

  • First party1.7 MB98.6%
  • Third party25.4 KB1.4%

Content size6.2 MB

  • First party6.1 MB98.9%
  • Third party67.7 KB1.1%

Requests31

  • First party2787.1%
  • Third party412.9%

First party requests and sizes per content type

27 requests

Calculated using .*xelta.* (use --firstParty to configure).

ContentHeader SizeTransfer SizeContent SizeRequests
html0 b8.5 KB35.8 KB1
css0 b20.0 KB116.7 KB1
javascript0 b467.4 KB1.7 MB11
image0 b8.6 KB6.5 KB3
font0 b48.0 KB47.3 KB1
favicon0 b4.9 KB9.6 KB1
other0 b1.2 MB4.2 MB6
json0 b1016 B896 B1
plain0 b588 B0 b1
TotalN/A1.7 MB6.1 MB27

Third party requests and sizes per content type

4 requests
ContentHeader SizeTransfer SizeContent SizeRequests
html0 b0 b0 b0
css0 b0 b0 b0
javascript0 b24.5 KB67.4 KB2
image0 b0 b0 b0
font0 b0 b0 b0
favicon0 b0 b0 b0
other0 b0 b0 b1
TotalN/A25.4 KB67.7 KB4