Run 3 summary

https://query.wikidata.org/querybuilder/

Tested 2026-05-26 05:36:38 using Firefox 150.0.2 (runtime settings)

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Screenshots

Summary

LCP1.469 s
Coach98
Loading & responsiveness
TTFB
692 ms
First Paint
983 ms
Fully Loaded
1.581 s
Page weight & requests
Total transfer size
213.1 KB
Requests
11
Visual progress
First Visual Change
1.467 s
Speed Index
1.487 s
Visual Complete 85%
1.467 s
Visual Complete 99%
2.600 s
Last Visual Change
2.600 s
Screenshot
Waterfall | Download HAR | 

Waterfall

First paintFCPLCPDOMContentLoadedDOM interactiveLoadRender-blockingRedirectError

Video

Run 3
Download video

Filmstrip

14 frames

Use --filmstrip.showAll to show all filmstrips.

0 s
1.3 sDOM Content Loaded Time 1.285 sPage Load Time 1.289 s
1.5 sFirst Visual Change 1.467 sVisual Complete 85% 1.467 sVisual Complete 95% 1.467 sFirst Contentful Paint 1.469 sLCP <P> 1.469 s
1.6 sFully Loaded 1.581 s
1.7 s
1.8 s
1.9 s
2 s
2.1 s
2.2 s
2.3 s
2.4 s
2.5 s
2.6 sLast Visual Change 2.600 sVisual Complete 99% 2.600 s
Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

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

98
1 warning2 info
infoAdd decoding="async" to non-critical imagesdecodingAsync

The page has 3 images (out of 3) 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

Offenders
warn(85)Avoid slowing down the critical rendering pathavoidRenderBlocking

The style https://query.wikidata.org/querybuilder/assets/index.58783912.css is larger than the magic number TCP window size 14.5 kB. Make the file smaller and the page will render faster. Avoid loading synchronously JavaScript inside of head, you shouldn't need JavaScript to render your page! The page has 1 render blocking CSS request and 1 blocking JavaScript request inside of head.

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.

Offenders
infoLong cache headers is goodcacheHeadersLong

The page has 9 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

Best practice advice

73
1 error2 info
error(0)Cumulative Layout ShiftcumulativeLayoutShift

Layout Shift is not supported in this browser

Cumulative Layout Shift measures the sum total of all individual layout shift scores for unexpected layout shift that occur. The metric is measuring visual stability by quantify how often users experience unexpected layout shifts. It is one of Google Web Vitals.

infoMeta descriptionmetaDescription

The page is missing a meta description.

Use a page description to make the page more relevant to search engines.

infoAvoid unnecessary headersunnecessaryHeaders

Privacy advice

74
6 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(0)Set a referrer-policy header to make sure you do not leak user information.referrerPolicyHeader

Set 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/.

Offenders
warn(0)Set X-Content-Type-Options: nosniff to stop the browser from MIME-sniffing the response.xContentTypeOptionsHeader

Set 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

Offenders

Page info

Page info

TitleWikidata Query Builder
Width1920
Height1286
DOM elements959
Avg DOM depth12
Max DOM depth25
Iframes0
Script tags1
Local storage0 b
Session storage0 b
Network Information APIunknown

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
Visual Metrics | Google Web Vitals | Largest Contentful Paint | Browser metrics | Visual Elements | Metrics from CDP | Server timings | 

Visual Metrics

Visual progress
Visual progress at 0 s0.0s
Visual progress at 1.5 s1.5s
Visual progress at 1.7 s1.7s
Visual progress at 1.9 s1.9s
Visual progress at 2 s2.0s
Visual progress at 2.2 s2.2s
Visual progress at 2.4 s2.4s
Visual progress at 2.6 s2.6s
FCP1.47s
LCP1.47s
VC851.47s
0.0s0.5s1.0s1.6s2.1s2.6s

Google Web Vitals

Largest Contentful Paint

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

1.469 sLCP render time

Phase breakdown

  • TTFB692 ms
  • Resource load delay0 ms
  • Resource load duration0 ms
  • Element render delay778 ms

Element

Element type
<p>
Size (w × h)
13520
Load time
0 ms

DOM path

body > div#app > div#app > div > main > p
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.

Browser Metrics

Navigation Timing
Extra timings

Server timings

2 entries
NameDurationDescription
cache0 mspass
host0 mscp3070

Custom metrics collected through JavaScript

There are no custom configured scripts.

Extra metrics collected using scripting

There are no custom extra metrics from scripting.

Visual Elements2
Heading
Position (x, y)272, 56
Size (w × h)1 × 1
HTML snippet
<h1 class="visually-hidden"></h1>
LargestContentfulPaint
Display time1.467 s
Position (x, y)272, 144
Size (w × h)676 × 130
HTML snippet
<p class="querybuilder__description"></p>
Summary | Largest responses | Per content type | Per domain | Expires & last-modified | 

PageXray

How the page is built.

HTTP versionHTTP/2.0
Total requests11
Total domains2
Transfer size213.1 KB
Content size0 b
Missing compression0
Cookies40 third-party

Response codes

200
1090.9%
204
19.1%

Requests and sizes per content type

7 types
ContentHeader SizeTransfer SizeContent SizeRequests
html1.1 KB2.1 KB0 b1
css1.1 KB24.0 KB0 b1
javascript1.1 KB169.5 KB0 b1
favicon953 B5.7 KB0 b1
json968 B3.1 KB0 b2
plain903 B915 B0 b1
svg3.8 KB7.8 KB0 b4
Total9.8 KB213.1 KB0 b11

Data per domain

2 domains
DomainTotal download timeTransfer SizeContent SizeRequests
query.wikidata.org2.025 s212.2 KB0 b10
www.wikidata.org184 ms915 B0 b1

Expires & last-modified statistics

typeminmedianmax
Expires0 seconds1 hour1 hour
Last modified5 weeks45 weeks45 weeks

CPU

afterPageCompleteCheck.jpg | largestContentfulPaint.jpg | 

Screenshots