Page summary

https://www.wikipedia.org

Tested 2025-01-17 23:12:22 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 Score98
Total Page Transfer Size68.5 KB
Requests7
Timing metrics
TTFB [median]489 ms
First Paint [median]929 ms
Fully Loaded [median]994 ms
Google Web Vitals
TTFB [median]489 ms
First Contentful Paint (FCP) [median]929 ms
Largest Contentful Paint (LCP) [median]929 ms
Cumulative Layout Shift (CLS) [median]0.00
CPU metrics
CPU long tasks [median]1
CPU longest task duration352 ms
CPU last long task happens at509 ms
Visual Metrics
First Visual Change [median]933 ms
Speed Index [median]1.200 s
Visual Complete 85% [median]933 ms
Visual Complete 99% [median]9.266 s
Last Visual Change [median]11.066 s
Screenshot of run 3

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange933 ms933 ms933 ms933 ms
LastVisualChange10.466 s11.066 s10.833 s11.100 s
SpeedIndex1.194 s1.200 s1.198 s1.201 s
LargestImage933 ms933 ms933 ms933 ms
Heading933 ms933 ms933 ms933 ms
LargestContentfulPaint933 ms933 ms933 ms933 ms
LastMeaningfulPaint933 ms933 ms933 ms933 ms
VisualReadiness9.533 s10.133 s9.900 s10.167 s
VisualComplete85933 ms933 ms933 ms933 ms
VisualComplete95933 ms933 ms933 ms933 ms
VisualComplete999.266 s9.266 s9.266 s9.266 s
Google Web Vitals
Time To First Byte (TTFB)488 ms489 ms492 ms505 ms
Largest Contentful Paint (LCP)926 ms929 ms937 ms960 ms
First Contentful Paint (FCP)926 ms929 ms937 ms960 ms
Cumulative Layout Shift (CLS)0000
More metrics
firstPaint926 ms929 ms937 ms960 ms
loadEventEnd877 ms892 ms891 ms906 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 at506 ms509 ms511 ms523 ms
| Waterfall | | Download HAR | 

Waterfall

Run 3 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.6 sCPU Long Task duration 352 ms
0.9 sDOM Content Loaded Time 880 msPage Load Time 886 ms
1 sFirst Contentful Paint 926 msLCP <IMG> 926 msFirst Visual Change 933 msVisual Complete 85% 933 msVisual Complete 95% 933 msLargest Image 933 msHeading 933 msFully Loaded 992 ms
1.1 s
1.5 s
2.1 s
2.7 s
3.3 s
3.9 s
4.5 s
5.1 s
5.7 s
6.3 s
6.9 s
7.5 s
8.1 s
8.7 s
9.3 sVisual Complete 99% 9.266 s
9.4 s
9.9 s
10.5 s
11.1 sLast Visual Change 11.066 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 (98)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 0 blocking requests and 2 in body parser blocking (2 JavaScript and 0 CSS).80
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://www.wikipedia.org/portal/wikipedia.org/assets/js/index-24c3e2ca18.js
  • https://www.wikipedia.org/portal/wikipedia.org/assets/js/gt-ie9-ce3fe8e88d.js
  • Have a fast largest contentful paint (largestContentfulPaint) You can add fetchPriority="high" to the image to increase the load priority in Chrome.95
    Description: Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance.
    Avoid CPU Long Tasks (longTasks)The page has 1 CPU long task with the total of 348 ms. The total blocking time is 0 ms and 1 long task before first contentful paint with total time of 348 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
  • 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://www.wikipedia.org/portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png
  • https://www.wikipedia.org/portal/wikipedia.org/assets/js/index-24c3e2ca18.js
  • https://www.wikipedia.org/portal/wikipedia.org/assets/js/gt-ie9-ce3fe8e88d.js
  • https://www.wikipedia.org/portal/wikipedia.org/assets/img/sprite-de847d1a.svg
  • https://www.wikipedia.org/portal/wikipedia.org/assets/img/Wikinews-logo_sister.png
  • Best practice advice (100)

    Your best practice score is perfect!

    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://www.wikipedia.org/
  • 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://www.wikipedia.org/
  • Page info

    Page info
    TitleWikipedia
    Width1904
    Height1193
    DOM elements1046
    Avg DOM depth9
    Max DOM depth12
    Iframes0
    Script tags4
    Local storage94 B
    Session storage0 b
    Network Information API4g
    Resource Hints
    preconnect
    https://upload.wikimedia.org/
    https://en.wikipedia.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
    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 3

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)489 ms
    First Contentful Paint (FCP)926 ms
    Largest Contentful Paint (LCP)926 ms
    Total Blocking Time (TBT)0 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP1748
    Time spent in recalculate style before FCP19.696 ms
    Extra timings
    TTFB489 ms
    First Paint926 ms
    Load Event End886 ms
    Fully loaded992 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 typeIMG
    Element/tag<img class="central-featured-logo" src="portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png" srcset="portal/wikipedia.org/assets/img/Wikipedia-logo-v2@1.5x.png 1.5x, portal/wikipedia.org/assets/img/Wikipedia-logo-v2@2x.png 2x" width="200" height="183" alt="">
    Render time 926 ms
    Elements that needed recalculate style before LCP1748
    Time spent in recalculate style before LCP19.696 ms
    Load time859 ms
    URL https://www.wikipedi...pedia-logo-v2.png
    Size (width*height)36600
    DOM path
    main > div:eq(0) > img> main > div:eq(0) > img>
    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.

    The Largest Contentful Paint API highlighted this image as a part of the LCP.

    LCP

    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
    308 ms13.2 ms351.8 ms347 ms4.8 ms
    No availible script information.

    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 (Wikipedia-logo-v2.png)933 ms 852 198 200 183
    <img class="central-featured-logo" src="portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png" srcset="portal/wikipedia.org/assets/img/Wikipedia-logo-v2@1.5x.png 1.5x, portal/wikipedia.org/assets/img/Wikipedia-logo-v2@2x.png 2x" width="200" height="183" alt="">
    Heading933 ms 864 52 176 69
    <h1 class="central-textlogo-wrapper"></h1>
    LargestContentfulPaint (Wikipedia-logo-v2.png)933 ms 852 198 200 183
    <img class="central-featured-logo" src="portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png" srcset="portal/wikipedia.org/assets/img/Wikipedia-logo-v2@1.5x.png 1.5x, portal/wikipedia.org/assets/img/Wikipedia-logo-v2@2x.png 2x" width="200" height="183" alt="">
    | 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 requests7
    Total domains1
    Total transfer size68.5 KB
    Total content size168.7 KB
    Responses missing compression3
    Number of cookies1
    Third party cookies0
    Requests per response code
    2007

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b19.5 KB77.0 KB1
    javascript0 b9.7 KB22.1 KB2
    image0 b18.9 KB17.5 KB2
    svg0 b18.6 KB49.4 KB1
    favicon0 b1.7 KB2.7 KB1
    Total0 b68.5 KB168.7 KB7

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    www.wikipedia.org1.461 s68.5 KB168.7 KB7

    Expires and last modified statistics

    typeminmedianmax
    Expires1 hour1 day1 year
    Last modified2 weeks16 weeks16 weeks

    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
    javascript0 b0
    image0 b0
    font0 b0
    favicon1.7 KB1
    Total1.7 KB1

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    020

    Render information

    CPU Long Tasks | CPU Time Spent | 

    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 Paint1352
    Long Tasks before First Contentful Paint1352
    Long Tasks before Largest Contentful Paint1352
    Long Tasks after Load Event End00
    Total Long Tasks1352

    CPU last long task happened at 506 ms

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown506352window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML5
    styleLayout353
    paintCompositeRender5
    scriptParseCompile0
    scriptEvaluation11
    garbageCollection0
    other72
    Events (ms)
    Layout334
    RunTask43
    UpdateLayoutTree20
    CpuProfiler::StartProfiling13