Page summary

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

Tested 2025-01-18 01:53:13 using Chrome 131.0.6778.85 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU
| Summary | | Download Video | Download Timeline Log | Download HAR | Download Console Logs | 

Summary

MetricValue
Page metrics
Performance Score78
Total Page Transfer Size463.4 KB
Requests47
Timing metrics
TTFB [median]489 ms
First Paint [median]796 ms
Fully Loaded [median]1.518 s
Google Web Vitals
TTFB [median]489 ms
First Contentful Paint (FCP) [median]796 ms
Largest Contentful Paint (LCP) [median]796 ms
Cumulative Layout Shift (CLS) [median]0.00
CPU metrics
CPU long tasks [median]1
CPU longest task duration89 ms
CPU last long task happens at640 ms
Visual Metrics
First Visual Change [median]800 ms
Speed Index [median]818 ms
Visual Complete 85% [median]800 ms
Visual Complete 99% [median]1.133 s
Last Visual Change [median]1.200 s
Screenshot of run 1

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange766 ms800 ms800 ms866 ms
LastVisualChange1.166 s1.200 s1.226 s1.300 s
SpeedIndex787 ms818 ms821 ms889 ms
LargestImage1.133 s1.133 s1.193 s1.300 s
Heading766 ms800 ms800 ms866 ms
LargestContentfulPaint766 ms800 ms800 ms866 ms
LastMeaningfulPaint1.133 s1.133 s1.193 s1.300 s
VisualReadiness400 ms400 ms427 ms500 ms
VisualComplete85766 ms800 ms800 ms866 ms
VisualComplete95966 ms1.000 s1.026 s1.133 s
VisualComplete991.133 s1.133 s1.193 s1.300 s
Google Web Vitals
Time To First Byte (TTFB)488 ms489 ms507 ms578 ms
Largest Contentful Paint (LCP)785 ms796 ms813 ms894 ms
First Contentful Paint (FCP)785 ms796 ms813 ms894 ms
Cumulative Layout Shift (CLS)0000
More metrics
firstPaint785 ms796 ms813 ms894 ms
loadEventEnd1.396 s1.420 s1.429 s1.486 s
User Timing
mwStartup727 ms735 ms752 ms825 ms
CPU
Total Blocking Time0 ms0 ms0 ms0 ms
Max Potential FID0 ms0 ms0 ms0 ms
CPU long tasks 1111
CPU last long task happens at636 ms640 ms657 ms728 ms
| Waterfall | | Download HAR | 

Waterfall

Run 1 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.7 sCPU Long Task duration 89 ms
0.8 sDOM Content Loaded Time 741 msmwStartup 744 msFirst Contentful Paint 785 msLCP <P> 785 msFirst Visual Change 800 msVisual Complete 85% 800 msHeading 800 ms
0.9 s
1 sVisual Complete 95% 966 ms
1.1 s
1.2 sVisual Complete 99% 1.133 sLargest Image 1.133 sLast Visual Change 1.200 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.0.2.

I am the coach

Coach score

Performance advice (78)

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 2 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.80
    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
  • 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 1 CPU long task with the total of 89 ms. The total blocking time is 0 ms and 1 long task before first contentful paint with total time of 89 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.80
    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
  • Avoid doing redirects (assetsRedirects)The page has 1 redirect. 1 of the redirects are from the base domain, please fix them! 90
    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
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 20 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 126.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/a/aa/Freston_site_map_and_c...and_cropmarks.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/Mingxing_Film_Company_...oduction_logo.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/David_Lynch_at_the_199...0_Emmy_Awards.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ereveld_Tanggok.jpg/16...eveld_Tanggok.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Volc%C3%A1n_Aucanquilc...2-10%2C_DD_11.JPG
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/31px-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/35p...ooks-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/47px...data-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/51px...news-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/35p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/35...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/3...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/35px...y-logo-v2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Wiktionary-logo.svg/41...nary-logo.svg.png
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • Long cache headers is good (cacheHeadersLong)The page has 3 requests that have a shorter cache time than 30 days (but still a cache time).97
    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
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 252.6 kB and the uncompressed size is 981.1 kB. This is quite large. 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 20.5 KB61.6 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.1 KB58.2 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 170.6 KB674.4 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 26.9 KB126.6 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 2.7 KB14.8 KB
    https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn 1.2 KB252 B
    Make each CSS response small (optimalCssSize)https://en.wikipedia.org/w/load.php?lang=en&modules=ext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles&only=styles&skin=vector-2022 size is 22.3 kB (22298) 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 21.8 KB173.6 KB
    Don't use private headers on static content (privateAssets)The page has 3 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.80
    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
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • Best practice advice (89)

    TitleAdviceScore
    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 887 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 26 responses that sets both a max-age and expires header. There are 47 responses that sets a server header. 27
    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/a/aa/Freston_site_map_and_c...and_cropmarks.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/Mingxing_Film_Company_...oduction_logo.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/David_Lynch_at_the_199...0_Emmy_Awards.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Ereveld_Tanggok.jpg/16...eveld_Tanggok.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/8/85/Volc%C3%A1n_Aucanquilc...2-10%2C_DD_11.JPG
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/31px-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/35p...ooks-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/47px...data-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/51px...news-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/35p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/35...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/3...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/35px...y-logo-v2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Wiktionary-logo.svg/41...nary-logo.svg.png
  • https://en.wikipedia.org/static/images/project-logos/enwiki.png
  • https://en.wikipedia.org/static/images/project-logos/enwiki.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
  • 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://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://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
  • 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.44.0-wmf.12
    Width1904
    Height3332
    DOM elements1404
    Avg DOM depth14
    Max DOM depth21
    Iframes0
    Script tags5
    Local storage794.0 KB
    Session storage0 b
    Network Information API4g
    Resource Hints
    dns-prefetch
    https://meta.wikimedia.org/
    https://en.wikipedia.org/wiki/login.wikimedia.org
    preconnect
    https://upload.wikimedia.org/

    Technologies used to build the page.

    Data collected using Wappalyzerversion 6.10.66.  Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyser find more information about technologies used.

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

    Data from run 1

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)490 ms
    First Contentful Paint (FCP)785 ms
    Largest Contentful Paint (LCP)785 ms
    Total Blocking Time (TBT)0 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP1265
    Time spent in recalculate style before FCP25.64 ms
    Extra timings
    TTFB490 ms
    First Paint785 ms
    Load Event End1.439 s
    Fully loaded1.537 s
    User Timing marks
    mwStartup744 ms

    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 785 ms
    Elements that needed recalculate style before LCP1265
    Time spent in recalculate style before LCP25.64 ms
    Load time0 ms
    Size (width*height)225454
    DOM path
    div:eq(1) > 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(1) > 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

    No layout shift detected.

    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
    45 ms147.6 ms88.4 ms0 ms88.4 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms37.5 ms14.5 ms10.1 ms4.4 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: 4310

    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: 3233

    Server timings

    namedurationdescription
    cache0hit-front
    host0cp3067

    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 Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (159px-Mingxing_Film_Company_%281937%29_production_logo.jpg)1.133 s 705 825 159 124
    <img alt="Production logo of Mingxing" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/86/Mingxing_Film_Company_%281937%29_production_logo.jpg/159px-Mingxing_Film_Company_%281937%29_production_logo.jpg" decoding="async" width="159" height="124" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/86/Mingxing_Film_Company_%281937%29_production_logo.jpg/239px-Mingxing_Film_Company_%281937%29_production_logo.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/86/Mingxing_Film_Company_%281937%29_production_logo.jpg/318px-Mingxing_Film_Company_%281937%29_production_logo.jpg 2x" data-file-width="845" data-file-height="657">
    Heading800 ms 684 159 256 28
    <h1 id="Welcome_to_Wikipedia"></h1>
    LargestContentfulPaint800 ms 215 319 649 358
    <p></p>
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests47
    Total domains3
    Total transfer size463.4 KB
    Total content size1.4 MB
    Responses missing compression11
    Number of cookies1
    Third party cookies0
    Requests per response code
    20046
    3021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b25.0 KB114.1 KB1
    css0 b24.8 KB180.8 KB2
    javascript0 b246.7 KB958.1 KB7
    image0 b144.3 KB127.3 KB20
    svg0 b20.9 KB19.8 KB15
    favicon0 b1.7 KB2.7 KB1
    Total0 b463.4 KB1.4 MB46

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org4.112 s340.2 KB1.3 MB28
    upload.wikimedia.org8.298 s122.0 KB106.4 KB18
    login.wikimedia.org208 ms1.2 KB252 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds5 minutes1 year
    Last modified22 seconds27 weeks1 year

    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
    Total1.7 KB1

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript226.2 KB6
    image36.6 KB13
    font0 b0
    svg10.5 KB10
    favicon1.7 KB1
    Total275.1 KB31

    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 0
    Max Potential First Input Delay 0
    Long Tasks before First Paint189
    Long Tasks before First Contentful Paint189
    Long Tasks before Largest Contentful Paint189
    Long Tasks after Load Event End00
    Total Long Tasks189

    CPU last long task happened at 641 ms

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown64189window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML14
    styleLayout107
    paintCompositeRender13
    scriptParseCompile2
    scriptEvaluation139
    garbageCollection6
    other141
    Events (ms)
    FunctionCall111
    RunTask103
    Layout61
    UpdateLayoutTree45
    v8.run15
    CpuProfiler::StartProfiling14
    Paint11
    ParseHTML10

    Time spent per request

    URLCPU time (ms)
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022124
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2CstartUp%7Cext.centralauth.centralautologin%7Cext.checkUser.clientHints%7Cext.cx.eventlogging.campaigns%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.uls.interface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CtextSelection%7Cmediawiki.String%2CTitle%2CUri%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=h3i7533