Run 3 summary

https://en.wikipedia.org/wiki/Main_Page

Tested 2025-09-17 18:27:45 using Chrome 140.0.7339.80 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Screenshots

Summary

MetricValue
Page metrics
Performance score76
Total page size643.8 KB
Requests42
Timing metrics
TTFB487 ms
First Paint812 ms
Fully Loaded9.808 s
Google Web Vitals
TTFB487 ms
First Contentful Paint (FCP) 812 ms
Largest Contentful Paint (LCP) 812 ms
Cumulative Layout Shift (CLS) 0.15
312 ms
Total Blocking Time78 ms
Max Potential FID128 ms
CPU metrics
CPU long tasks2
CPU last long task happens at1.542 s
Visual Metrics
First Visual Change800 ms
Speed Index1.617 s
Visual Complete 85%800 ms
Visual Complete 99%10.766 s
Last Visual Change13.633 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.7 sCPU Long Task duration 91 ms
0.8 smwStartup 764 msDOM Content Loaded Time 777 msFirst Visual Change 800 msVisual Complete 85% 800 ms
0.9 sFirst Contentful Paint 812 msLCP <P> 812 ms
1 s
1.1 s
1.2 s
1.3 s
1.4 smwCentralNoticeBanner 1.381 s
1.6 sCPU Long Task duration 128 ms
1.7 s
2.1 sPage Load Time 2.022 s
9.2 sLayout Shift 0.00177 9.172 s
9.3 sLayout Shift 0.00229 9.221 sLayout Shift 0.00134 9.242 sLayout Shift 0.00177 9.264 sLayout Shift 0.00354 9.287 s
9.4 sLayout Shift 0.00222 9.306 sLayout Shift 0.00233 9.329 sLayout Shift 0.00267 9.348 sLayout Shift 0.00670 9.371 sLayout Shift 0.00387 9.392 s
9.5 sLayout Shift 0.00448 9.410 sLayout Shift 0.00539 9.431 sLayout Shift 0.01282 9.452 sLayout Shift 0.00778 9.472 sLayout Shift 0.00863 9.494 s
9.6 sLayout Shift 0.00912 9.514 sLayout Shift 0.01671 9.534 sLayout Shift 0.00737 9.556 sLayout Shift 0.00635 9.579 sLayout Shift 0.00559 9.599 s
9.7 sLayout Shift 0.01349 9.636 sLayout Shift 0.00349 9.659 sLayout Shift 0.00327 9.680 sLayout Shift 0.00284 9.700 s
9.8 sLayout Shift 0.00280 9.705 sLayout Shift 0.00235 9.722 sLayout Shift 0.00214 9.740 sLayout Shift 0.00196 9.762 s
9.9 sLayout Shift 0.00516 9.801 sFully Loaded 9.808 sLayout Shift 0.00055 9.823 sLayout Shift 0.00055 9.841 s
10 sLayout Shift 0.00235 9.902 sLayout Shift 0.00058 9.970 s
10.1 s
10.2 sVisual Complete 95% 10.166 sLargest Image 10.166 sHeading 10.166 s
10.3 s
10.4 s
10.5 s
10.6 s
10.7 s
10.8 sVisual Complete 99% 10.766 s
10.9 s
11 s
11.1 s
11.2 s
11.3 s
11.4 s
11.5 s
11.6 s
11.7 s
11.8 s
11.9 s
12 s
13.7 sLast Visual Change 13.633 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 8.1.3.

I am the coach

Coach score

Performance advice (76)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 2 blocking requests and 0 in body parser blocking (0 JavaScript and 2 CSS). There are 1 potentially render blocking requests. You need to verify if it is render blocking: https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-202299
Description: 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:
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • Don't scale images in the browser (avoidScalingImages)The page has 3 images 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.70
    Description: 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.
    Offenders:
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Jay_Rayner_20191205.jp...yner_20191205.jpg
  • Inline CSS for faster first render (inlineCss)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.95
    Description: 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.
    Avoid CPU Long Tasks (longTasks)The page has 2 CPU long tasks with the total of 219 ms. The total blocking time is 78 ms and 1 long task before first contentful paint with total time of 91 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.60
    Description: 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:
  • unknown
  • self
  • Avoid doing redirects (assetsRedirects)The page has 2 redirects. 1 of the redirects are from the base domain, please fix them! 1 request are from other domains, it could be 3rd-party assets doing unnecessary redirects. :(80
    Description: 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:
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script&usesul3=1&urlversion=2
  • https://auth.wikimedia.org/metawiki/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 22 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 228.2 kB the next access.0
    Description: 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:
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Tennieldumdee.jpg/250px-Tennieldumdee.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Jay_Rayner_20191205.jp...yner_20191205.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Robert_Redford_%28crop...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/President_Ronald_Reaga...%2C_1985.webm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Thure_de_Thulstrup_-_B...e_of_Antietam.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/MediaWiki-2020-icon.sv...2020-icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Lo...nity_Logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/40p...ooks-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/60px...data-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/60px...news-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/40p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/40...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/4...cies-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017....logo_2017.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-ico...o-v3-icon.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/40px...y-logo-v2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Wiktionary-logo.svg/60...nary-logo.svg.png
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script&usesul3=1&urlversion=2
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://auth.wikimedia.org/metawiki/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • Long cache headers is good (cacheHeadersLong)The page has 5 requests that have a shorter cache time than 30 days (but still a cache time).95
    Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version.
    Offenders:
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • https://en.wikipedia.org/api/rest_v1/page/summary/77th_Primetime_Emmy_Awards
  • https://en.wikipedia.org/api/rest_v1/page/summary/English_language
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 381.3 kB and the uncompressed size is 1.5 MB. This is totally crazy! There is really room for improvement here. 0
    Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks?
    Offenders:
    URLTransfer sizeContent size
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022 21.1 KB63.3 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 7.7 KB22.3 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 17.2 KB58.8 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 181.3 KB753.4 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 26.5 KB124.0 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 2.7 KB14.8 KB
    https://meta.wikimedia.org/w/index.php...a.org/w/index.php 56.7 KB223.2 KB
    https://en.wikipedia.org/w/load.php?lang=en&modules=vue&skin=vector-2022&version=1hv35 57.8 KB156.2 KB
    https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn 1.4 KB294 B
    Make each CSS response small (optimalCssSize)https://en.wikipedia.org/w/load.php?lang=en&modules=ext.tmh.player.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediamessages.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022 size is 23.4 kB (23436) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.90
    Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier.
    Offenders:
    URLTransfer sizeContent size
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 22.9 KB178.6 KB
    Don't use private headers on static content (privateAssets)The page has 4 requests with private headers. The main page has a private header. It could be right in some cases where the user can be logged in and served specific content. But if your asset is static it should never be private. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.70
    Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private.
    Offenders:
  • https://en.wikipedia.org/wiki/Main_Page
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script&usesul3=1&urlversion=2
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • Best practice advice (81)

    TitleAdviceScore
    Cumulative Layout Shift (cumulativeLayoutShift)You have a cumulative layout shift score (0.1543) that needs improvements. It is in the Google Web Vitals needs improvement range, shift higher than 0.1. You should manually check the filmstrip or video and check if it will affect the user.50
    Description: 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.
    Meta description (metaDescription)The page is missing a meta description.0
    Description: Use a page description to make the page more relevant to search engines.
    Do not send too long headers (longHeaders)https://en.wikipedia...ia.org/w/load.php has a header sourcemap that is 1039 characters long. 99
    Description: Do not send response headers that are too long.
    Offenders:
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • Avoid unnecessary headers (unnecessaryHeaders)There are 16 responses that sets both a max-age and expires header. There are 42 responses that sets a server header. 42
    Description: 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:
  • https://en.wikipedia.org/wiki/Main_Page
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Tennieldumdee.jpg/250px-Tennieldumdee.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Jay_Rayner_20191205.jp...yner_20191205.jpg
  • https://en.wikipedia.org/static/images/icons/wikipedia.png
  • https://en.wikipedia.org/static/images/icons/wikipedia.png
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Robert_Redford_%28crop...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/President_Ronald_Reaga...%2C_1985.webm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Thure_de_Thulstrup_-_B...e_of_Antietam.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/40px-Commons-logo.svg.png
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/MediaWiki-2020-icon.sv...2020-icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Lo...nity_Logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/40p...ooks-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/60px...data-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/60px...news-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/40p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/40...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/4...cies-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017....logo_2017.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-ico...o-v3-icon.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/40px...y-logo-v2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Wiktionary-logo.svg/60...nary-logo.svg.png
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script&usesul3=1&urlversion=2
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://auth.wikimedia.org/metawiki/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://en.wikipedia.org/w/load.php?lang=en&modules=vue&skin=vector-2022&version=1hv35
  • https://en.wikipedia.org/w/load.php?lang=en&modules=vue&skin=vector-2022&version=1hv35
  • https://en.wikipedia.org/beacon/impression...beacon/impression
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://en.wikipedia.org/static/favicon/wikipedia.ico
  • https://en.wikipedia.org/static/favicon/wikipedia.ico
  • https://en.wikipedia.org/api/rest_v1/page/summary/77th_Primetime_Emmy_Awards
  • https://en.wikipedia.org/api/rest_v1/page/summary/English_language
  • Privacy advice (88)

    TitleAdviceScore
    Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader)Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download.0
    Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/.
    Offenders:
  • https://en.wikipedia.org/wiki/Main_Page
  • 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.0
    Description: 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:
  • https://en.wikipedia.org/wiki/Main_Page
  • Page info

    Page info
    TitleWikipedia, the free encyclopedia
    GeneratorMediaWiki 1.45.0-wmf.18
    Width1904
    Height3760
    DOM elements2670
    Avg DOM depth14
    Max DOM depth24
    Iframes0
    Script tags6
    Local storage877.3 KB
    Session storage0 b
    Network Information API4g
    Resource Hints
    dns-prefetch
    https://meta.wikimedia.org/
    https://en.wikipedia.org/wiki/auth.wikimedia.org
    preconnect
    https://upload.wikimedia.org/

    Technologies used to build the page.

    Data collected using Wappalyzer version 6.10.54. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyzer find more information about technologies used.

    TechnologyConfidenceCategory
    MediaWiki 100  Wikis
    PHP 100  Programming languages
    Apache Traffic Server 9.2.11100  Web servers
    HSTS 100  Security
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Interaction To Next Paint | Long Aninimation Frames | Visual Elements | Metrics from CDP | Server timings | 

    Visual Metrics

    Visual Metrics
    First Visual Change800 ms
    Speed Index1.617 s
    Largest Image10.166 s
    Heading10.166 s
    LargestContentfulPaint10.166 s
    Last Meaningful Paint10.166 s
    Largest Contentful Paint10.166 s
    Visual Complete 85%800 ms
    Visual Complete 95%10.166 s
    Visual Complete 99%10.766 s
    Last Visual Change13.633 s
    Visual Readiness12.833 s

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)487 ms
    First Contentful Paint (FCP)812 ms
    Largest Contentful Paint (LCP)812 ms
    Cumulative Layout Shift (CLS)0.15
    Interaction to next paint (INP)312 ms
    Total Blocking Time (TBT)78 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP1338
    Time spent in recalculate style before FCP39.034 ms
    Extra timings
    TTFB487 ms
    First Paint812 ms
    Load Event End2.022 s
    Fully loaded9.808 s
    User Timing marks
    mwStartup764 ms
    mwCentralNoticeBanner1.381 s

    Largest Contentful Paint

    When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.

    Element typeP
    Element/tag<p></p>
    Render time 812 ms
    Element render delay325 ms
    TTFB487 ms
    Resource delay0 ms
    Resource load duration0 ms
    Elements that needed recalculate style before LCP1338
    Time spent in recalculate style before LCP39.034 ms
    Load time0 ms
    Size (width*height)230395
    DOM path
    div:eq(2) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > div#mp-upper > div#mp-left > div#mp-tfa > p> div:eq(2) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > div#mp-upper > div#mp-left > div#mp-tfa > p>
    LCP

    The largest contentful paint is highlighted in the image. If no element is highlighted the element was removed before the screenshot or the LCP API couldn't find the element.

    Detected Cumulative Layout Shift

    0.15429 cumulative layout shift collected from the Cumulative Layout Shift API.

    These HTML elements contribute most to the Cumulative Layout Shifts of the page. The higher score, the more layout shift.

    ScoreHTML Element
    0.01671<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.01349<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.01282<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.00912<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.00863<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.00778<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00737<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00670<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00635<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00559<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00539<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00516<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00448<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00387<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00354<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00349<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00327<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00284<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00280<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00267<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00235<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00235<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00233<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00229<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00222<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00214<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00196<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00177<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00177<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00134<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header no-font-mode-scale"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00058<div id="wmde-banner-app" data-v-app=""></div>
    body > div#wmde-banner-app
    0.00055<div id="wmde-banner-app" data-v-app=""></div>
    body > div#wmde-banner-app
    0.00055<div id="wmde-banner-app" data-v-app=""></div>
    body > div#wmde-banner-app
    Layout shift

    The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.

    Interaction to Next Paint

    Interaction to Next Paint (INP) is a metric that try to measure responsiveness. It's useful if you are testing user journeys. Read more about Interaction to Next Paint.

    The measured latency was 312 ms.

    Event typepointerover
    Element typeLI
    Element class name
    Event target#mp-itn>ul>li
    Load state when the event happenedloading

    Long Animation Frames

    Read more about the Long Animation Frames API here here.

    The top 10 longest animation frames entries

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    80.4 ms128.1 ms2.4 ms1.4 ms1 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022

    Forced Style And Layout Duration: 59 ms

    Invoker:  IdleRequestCallback
    Invoker Type: user-callback
    Source Function Name:  doPropagation
    Window attribution: self
    Source char position: 4314

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    34.5 ms230.7 ms0.2 ms0.2 ms0 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    4.1 ms49.8 ms15.8 ms12.6 ms3.2 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022

    Invoker:  IdleRequestCallback
    Invoker Type: user-callback
    Source Function Name:  doPropagation
    Window attribution: self
    Source char position: 4314

    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022

    Invoker:  FrameRequestCallback
    Invoker Type: user-callback
    Source Function Name:  flushCssBuffer
    Window attribution: self
    Source char position: 3240

    Server timings

    namedurationdescription
    cache0hit-front
    host0cp3070

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    CDP Performance

    namevalue
    AudioHandlers0
    AudioWorkletProcessors0
    Documents33
    Frames19
    JSEventListeners182
    LayoutObjects2315
    MediaKeySessions0
    MediaKeys0
    Nodes5692
    Resources48
    ContextLifecycleStateObservers54
    V8PerContextDatas3
    WorkerGlobalScopes0
    UACSSResources4
    RTCPeerConnections0
    ResourceFetchers33
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents4
    LayoutCount62
    RecalcStyleCount197
    LayoutDuration82
    RecalcStyleDuration146
    DevToolsCommandDuration35
    ScriptDuration253
    V8CompileDuration7
    TaskDuration1022
    TaskOtherDuration499
    ThreadTime2
    ProcessTime5
    JSHeapUsedSize10915892
    JSHeapTotalSize14032896
    FirstMeaningfulPaint810

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (120px-Robert_Redford_%28cropped%29.jpg)10.166 s 1301 678 116 169
    <img alt="Robert Redford in 2012" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Robert_Redford_%28cropped%29.jpg/120px-Robert_Redford_%28cropped%29.jpg" decoding="async" width="116" height="169" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Robert_Redford_%28cropped%29.jpg/250px-Robert_Redford_%28cropped%29.jpg 1.5x" data-file-width="1488" data-file-height="2167">
    Heading10.166 s 684 515 256 28
    <h1 id="Welcome_to_Wikipedia"></h1>
    LargestContentfulPaint10.166 s 215 675 649 364
    <p></p>
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Console log  | Requests loaded after onLoad event  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests42
    Total domains5
    Total transfer size643.8 KB
    Total content size2.0 MB
    Responses missing compression15
    Number of cookies26
    Third party cookies0
    Requests per response code
    20039
    2041
    3022

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b49.2 KB230.3 KB1
    css0 b26.0 KB185.2 KB2
    javascript0 b372.4 KB1.4 MB9
    image0 b178.8 KB159.1 KB19
    svg0 b10.7 KB16.4 KB5
    plain0 b560 B0 b1
    favicon0 b1.7 KB2.7 KB1
    json0 b4.5 KB5.2 KB2
    Total0 b643.8 KB2.0 MB40

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org3.493 s420.9 KB1.6 MB21
    upload.wikimedia.org9.954 s164.8 KB145.9 KB18
    meta.wikimedia.org167 ms56.7 KB223.2 KB1
    auth.wikimedia.org253 msN/A0 b1
    login.wikimedia.org482 ms1.4 KB294 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 year
    Last modified1 second1 year2 years

    Console log

    No console log messages.

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image0 b0
    font0 b0
    favicon1.7 KB1
    json4.5 KB2
    Total6.2 KB3

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript145.0 KB5
    image35.5 KB12
    font0 b0
    plain560 B1
    favicon1.7 KB1
    json4.5 KB2
    Total187.3 KB23

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    201

    Render information

    CPU Long Tasks | CPU Time Spent | CPU Time Spent Per Request | 

    CPU

    Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.

    Long Tasks

    Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.

    TypeQuantityTotal duration (ms)
    Total Blocking Time 78
    Max Potential First Input Delay 128
    Long Tasks before First Paint191
    Long Tasks before First Contentful Paint191
    Long Tasks before Largest Contentful Paint191
    Long Tasks after Load Event End00
    Total Long Tasks2219

    CPU last long task happened at 1.542 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown64791window
    self1542128window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML26
    styleLayout232
    paintCompositeRender177
    scriptParseCompile7
    scriptEvaluation259
    garbageCollection5
    other311
    Events (ms)
    FunctionCall211
    RunTask145
    UpdateLayoutTree144
    Paint127
    Layout85
    PrePaint77
    Layerize43
    PaintImage37
    ParseHTML23
    Commit21
    RunMicrotasks18
    v8.run15
    CpuProfiler::StartProfiling10

    Time spent per request

    URLCPU time (ms)
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022259
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.centralautologin%7Cext.checkUser.clientHints%7Cext.cx.eventlogging.campaigns%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%2CxLab%7Cext.eventLogging.metricsPlatform%7Cext.growthExperiments.SuggestedEditSession%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.interface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cext.wikimediaEvents.xLab%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CtextSelection%7Cmediawiki.String%2CTitle%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.ready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Ccodex%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022&skin=vector-2022&version=ndu3k68
    https://meta.wikimedia.org/w/index.php?title=Special:BannerLoader&campaign=WMDE_FR_2025_Desktop_EN_01&banner=WMDE_FR_2025_Desktop_EN_01_var&uselang=en&debug=false17
    afterPageCompleteCheck.jpg | layoutShift.jpg | largestContentfulPaint.jpg | 

    Screenshots

    afterPageCompleteCheck.jpg

    afterPageCompleteCheck.jpg

    layoutShift.jpg

    layoutShift.jpg

    largestContentfulPaint.jpg

    largestContentfulPaint.jpg