Page summary

https://en.wikipedia.beta.wmflabs.org/wiki/Barack_Obama

Tested 2025-04-27 07:01:06 using Chrome 135.0.7049.52 (runtime settings).

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

Summary

MetricValue
Page metrics
Performance Score97
Total Page Transfer Size10.1 KB
Requests3
Timing metrics
TTFB [median]690 ms
First Paint [median]752 ms
Fully Loaded [median]1.301 s
Google Web Vitals
TTFB [median]690 ms
First Contentful Paint (FCP) [median]752 ms
Largest Contentful Paint (LCP) [median]752 ms
Cumulative Layout Shift (CLS) [median]0.00
Visual Metrics
First Visual Change [median]733 ms
Speed Index [median]741 ms
Visual Complete 85% [median]733 ms
Visual Complete 99% [median]1.133 s
Last Visual Change [median]1.133 s
Screenshot of run 4

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange733 ms733 ms746 ms766 ms
LastVisualChange1.100 s1.133 s1.166 s1.233 s
SpeedIndex740 ms741 ms754 ms775 ms
LargestImage1.100 s1.133 s1.166 s1.233 s
Heading1.100 s1.133 s1.166 s1.233 s
LargestContentfulPaint733 ms733 ms746 ms766 ms
LastMeaningfulPaint1.100 s1.133 s1.166 s1.233 s
VisualReadiness367 ms400 ms420 ms467 ms
VisualComplete85733 ms733 ms746 ms766 ms
VisualComplete95733 ms733 ms746 ms766 ms
VisualComplete991.100 s1.133 s1.166 s1.233 s
Google Web Vitals
Time To First Byte (TTFB)689 ms690 ms694 ms709 ms
Largest Contentful Paint (LCP)748 ms752 ms757 ms772 ms
First Contentful Paint (FCP)748 ms752 ms757 ms772 ms
Cumulative Layout Shift (CLS)0000
More metrics
firstPaint748 ms752 ms757 ms772 ms
loadEventEnd1.091 s1.108 s1.142 s1.217 s
CPU
Total Blocking Time0 ms0 ms0 ms0 ms
Max Potential FID0 ms0 ms0 ms0 ms
CPU long tasks 0000
CPU last long task happens at0 ms0 ms0 ms0 ms
| Waterfall | | Download HAR | 

Waterfall

Run 4 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.7 sDOM Content Loaded Time 700 ms
0.8 sFirst Visual Change 733 msVisual Complete 85% 733 msVisual Complete 95% 733 msFirst Contentful Paint 748 msLCP <P> 748 ms
1.1 sPage Load Time 1.092 s
1.2 sLast Visual Change 1.133 sVisual Complete 99% 1.133 sLargest Image 1.133 sHeading 1.133 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.1.

I am the coach

Coach score

Performance advice (97)

TitleAdviceScore
Avoid extra requests by setting cache headers (cacheHeaders)The page has 1 request that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 3 kB the next access.90
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://en.wikipedia.beta.wmflabs.org/favicon.ico
  • Always compress text content (compressAssets)The page has 2 requests that are served uncompressed. You could save a lot of bytes by sending them compressed instead.80
    Description: In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith.
    Offenders:
    URLTransfer sizeContent size
    https://en.wikipedia.beta.wmflabs.org/wiki/Barack_Obama 2.9 KB2.2 KB
    https://en.wikipedia.beta.wmflabs.org/favicon.ico 2.9 KB2.2 KB
    Avoid missing and error requests (responseOk)The page has 2 error responses. The page has 2 responses with code 403. 80
    Description: Your page should never request assets that return a 400 or 500 error. These requests are never cached. If that happens something is broken. Please fix it.
    Offenders:
  • https://en.wikipedia.beta.wmflabs.org/wiki/Barack_Obama
  • https://en.wikipedia.beta.wmflabs.org/favicon.ico
  • Best practice advice (83)

    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.
    Avoid too many third party requests (thirdParty)The page do 33% requests to third party domains (1 requests and 4.4 kB). First party is 2 requests and 6 kB. The regex .*wmflabs.* was used to calculate first/third party requests.50
    Description: Do not load most of your content from third party URLs.
    Avoid unnecessary headers (unnecessaryHeaders)There are 1 response that sets both a max-age and expires header. There are 3 responses that sets a server header. 96
    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.beta.wmflabs.org/wiki/Barack_Obama
  • https://www.wikimedia.org/static/images/wmf-logo.png
  • https://www.wikimedia.org/static/images/wmf-logo.png
  • https://en.wikipedia.beta.wmflabs.org/favicon.ico
  • Privacy advice (82)

    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.beta.wmflabs.org/wiki/Barack_Obama
  • 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.beta.wmflabs.org/wiki/Barack_Obama
  • Avoid third party cookies that is used to track the user. (thirdPartyCookies)The page sets 1 third party cookie.0
    Description: Third party cookies are used to track the user. They are automatically blocked in Safari and Firefox.
    Offenders:
  • .wikipedia.org
  • Page info

    Page info
    TitleWikimedia Error
    Width1919
    Height992
    DOM elements25
    Avg DOM depth4
    Max DOM depth6
    Iframes0
    Script tags0
    Local storage0 b
    Session storage0 b
    Network Information API4g

    Technologies used to build the page.

    Data collected using Wappalyzer version 6.10.66. 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
    HSTS 100  Security
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Long Aninimation Frames | Visual Elements | Server timings | 

    Data from run 4

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)689 ms
    First Contentful Paint (FCP)748 ms
    Largest Contentful Paint (LCP)748 ms
    Total Blocking Time (TBT)0 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP26
    Time spent in recalculate style before FCP0.546 ms
    Extra timings
    TTFB689 ms
    First Paint748 ms
    Load Event End1.092 s
    Fully loaded1.285 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 class="text-muted"></p>
    Render time 748 ms
    Element render delay59 ms
    TTFB689 ms
    Resource delay0 ms
    Resource load duration0 ms
    Elements that needed recalculate style before LCP26
    Time spent in recalculate style before LCP0.546 ms
    Load time0 ms
    Size (width*height)34632
    DOM path
    div:eq(1) > p:eq(1)> div:eq(1) > p:eq(1)>
    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

    Server timings

    namedurationdescription
    cache0int-front
    host0deployment-cache-text08

    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 (wmf-logo.png)1.133 s 640 164 135 101
    <img id="logo" src="https://www.wikimedia.org/static/images/wmf-logo.png" srcset="https://www.wikimedia.org/static/images/wmf-logo-2x.png 2x" alt="Wikimedia" width="135" height="101">
    Heading1.133 s 640 182 640 29
    <h1></h1>
    LargestContentfulPaint733 ms 0 633 1919 58
    <p class="text-muted"></p>
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests3
    Total domains2
    Total transfer size10.1 KB
    Total content size7.5 KB
    Responses missing compression2
    Number of cookies3
    Third party cookies1
    Requests per response code
    2001
    4032

    Largest assets on the page (by transfer size)

    URLTypeTransfer SizeContent Size
    https://www.wikimedi...ages/wmf-logo.pngimage4.3 KB3.2 KB
    https://en.wikipedia...wiki/Barack_Obamahtml2.9 KB2.2 KB
    https://en.wikipedia...s.org/favicon.icohtml2.9 KB2.2 KB

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    image0 b4.3 KB3.2 KB1
    Total0 b4.3 KB3.2 KB1

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.beta.wmflabs.org1.076 s5.9 KB4.3 KB2
    www.wikimedia.org500 ms4.3 KB3.2 KB1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 year
    Last modified5 weeks5 weeks5 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
    Total2.9 KB1

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image0 b0
    font0 b0
    Total2.9 KB1
    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.

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML1
    styleLayout6
    paintCompositeRender0
    scriptParseCompile0
    scriptEvaluation3
    garbageCollection0
    other34
    Events (ms)
    RunTask19
    CpuProfiler::StartProfiling11