Page summary

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

Tested 2025-10-27 00:51:22 using Chrome 141.0.7390.107 (script).(runtime settings).

Test visiting multiple pages on emulated mobile

First hit the Main_Page with an empty browser cache and then visit Barack_Obama

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

Summary

MetricValue
Page metrics
Performance Score91
Total Page Transfer Size365.9 KB
Requests10
Timing metrics
TTFB [median]122 ms
First Paint [median]540 ms
Fully Loaded [median]910 ms
Google Web Vitals
TTFB [median]122 ms
First Contentful Paint (FCP) [median]540 ms
Largest Contentful Paint (LCP) [median]564 ms
Cumulative Layout Shift (CLS) [median]0.00
Interaction To Next Paint (INP) [median]136 ms
Total Blocking Time [median]1.330 s
Max Potential FID [median]436 ms
CPU metrics
CPU long tasks [median]13
CPU longest task duration534 ms
CPU last long task happens at3.269 s
Visual Metrics
First Visual Change [median]567 ms
Speed Index [median]851 ms
Visual Complete 85% [median]933 ms
Visual Complete 99% [median]1.200 s
Last Visual Change [median]3.233 s
Screenshot of run 2

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange533 ms567 ms556 ms567 ms
LastVisualChange3.200 s3.233 s3.255 s3.333 s
SpeedIndex806 ms851 ms841 ms865 ms
Heading567 ms567 ms667 ms867 ms
LargestContentfulPaint867 ms933 ms922 ms967 ms
LastMeaningfulPaint867 ms933 ms922 ms967 ms
VisualReadiness2.666 s2.667 s2.700 s2.766 s
VisualComplete85867 ms933 ms922 ms967 ms
VisualComplete95867 ms933 ms922 ms967 ms
VisualComplete991.067 s1.200 s1.322 s1.700 s
Google Web Vitals
Time To First Byte (TTFB)120 ms122 ms121 ms122 ms
Largest Contentful Paint (LCP)540 ms564 ms657 ms868 ms
First Contentful Paint (FCP)512 ms540 ms539 ms564 ms
Cumulative Layout Shift (CLS)0000
More metrics
firstPaint512 ms540 ms539 ms564 ms
loadEventEnd1.660 s1.673 s1.670 s1.676 s
User Timing
mwStartup254 ms256 ms256 ms259 ms
CPU
Total Blocking Time1.283 s1.330 s1.331 s1.381 s
Max Potential FID428 ms436 ms466 ms534 ms
CPU long tasks 12131313
CPU last long task happens at3.214 s3.269 s3.275 s3.342 s
| Waterfall | | Download HAR | 

Waterfall

Run 2 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.3 smwStartup 254 msCPU Long Task duration 60 ms
0.5 sCPU Long Task duration 102 ms
0.6 sFirst Contentful Paint 540 msLCP <P> 540 msFirst Visual Change 567 msHeading 567 ms
0.7 s
0.8 s
0.9 sCPU Long Task duration 123 ms
1 sFully Loaded 910 msVisual Complete 85% 933 msVisual Complete 95% 933 msCPU Long Task duration 77 ms
1.1 sCPU Long Task duration 64 ms
1.2 s
1.3 sCPU Long Task duration 346 ms
1.4 s
1.5 s
1.6 sDOM Content Loaded Time 1.543 s
1.7 sPage Load Time 1.676 sVisual Complete 99% 1.700 s
1.8 s
1.9 sCPU Long Task duration 115 ms
2.1 sCPU Long Task duration 534 ms
2.7 sCPU Long Task duration 51 ms
2.8 sCPU Long Task duration 68 ms
2.9 sCPU Long Task duration 293 ms
3.2 sCPU Long Task duration 189 ms
3.4 sLast Visual Change 3.333 sCPU Long Task duration 71 ms
| 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 (91)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 1 blocking requests and 0 in body parser blocking (0 JavaScript and 1 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=minerva99
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-wordmark-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 13 CPU long tasks with the total of 2.044 s. The total blocking time is 1.330 s and 2 long tasks before first contentful paint with total time of 164 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.0
    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:
  • self
  • unknown
  • unknown
  • unknown
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 2 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 56.8 kB the next access.80
    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/8/8d/President_Barack_Obama..._Barack_Obama.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Barack_Obama_signature...signature.svg.png
  • Long cache headers is good (cacheHeadersLong)The page has 2 requests that have a shorter cache time than 30 days (but still a cache time).98
    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=minerva
  • Make each CSS response small (optimalCssSize)https://en.wikipedia.org/w/load.php?lang=en&modules=ext.cite.styles%7Cext.phonos.icons%2Cstyles%7Cext.relatedArticles.styles%7Cext.tmh.player.styles%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cmediawiki.hlist%7Cmobile.init.styles%7Cskins.minerva.amc.styles%7Cskins.minerva.codex.styles%7Cskins.minerva.content.styles.images%7Cskins.minerva.icons%2Cstyles%7Cwikibase.client.init&only=styles&skin=minerva size is 21.6 kB (21550) 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.0 KB154.1 KB

    Best practice advice (90)

    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 unnecessary headers (unnecessaryHeaders)There are 7 responses that sets both a max-age and expires header. There are 10 responses that sets a server header. 83
    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/Barack_Obama
  • 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/8/8d/President_Barack_Obama..._Barack_Obama.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Barack_Obama_signature...signature.svg.png
  • https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=minerva
  • https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=minerva
  • 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
  • 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/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.org/wiki/Barack_Obama
  • Page info

    Page info
    TitleBarack Obama - Wikipedia
    GeneratorMediaWiki 1.45.0-wmf.24
    Width360
    Height6715
    DOM elements13797
    Avg DOM depth14
    Max DOM depth23
    Iframes0
    Script tags7
    Local storage672.4 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 | Long Aninimation Frames | Visual Elements | Server timings | 

    Data from run 2

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)120 ms
    First Contentful Paint (FCP)540 ms
    Largest Contentful Paint (LCP)540 ms
    Total Blocking Time (TBT)1.381 s
    First Contentful Paint info
    Elements that needed recalculate style before FCP101
    Time spent in recalculate style before FCP47.955 ms
    Extra timings
    TTFB120 ms
    First Paint540 ms
    Load Event End1.676 s
    Fully loaded910 ms
    User Timing marks
    mwStartup254 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 540 ms
    Element render delay420 ms
    TTFB120 ms
    Resource delay0 ms
    Resource load duration0 ms
    Elements that needed recalculate style before LCP101
    Time spent in recalculate style before LCP47.955 ms
    Load time0 ms
    Size (width*height)76191
    DOM path
    div#mw-mf-viewport > div#mw-mf-page-center > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > section#mf-section-0 > p:eq(1)> div#mw-mf-viewport > div#mw-mf-page-center > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > section#mf-section-0 > 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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    487.2 ms560.4 ms2.9 ms2.8 ms0.1 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralauth.ForeignApi%7Cext.cite.ux-enhancements%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.model%7Cext.phonos.init%7Cext.relatedArticles.readMore.bootstrap%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cjquery%7Cmediawiki.ForeignApi%7Cmediawiki.ForeignApi.core%7Cmediawiki.page.media%7Cmw.cx.SiteMapper&skin=minerva&version=tjtz8

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Window attribution: self
    Source char position: 74411

    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralauth.ForeignApi%7Cext.cite.ux-enhancements%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.model%7Cext.phonos.init%7Cext.relatedArticles.readMore.bootstrap%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cjquery%7Cmediawiki.ForeignApi%7Cmediawiki.ForeignApi.core%7Cmediawiki.page.media%7Cmw.cx.SiteMapper&skin=minerva&version=tjtz8

    Forced Style And Layout Duration: 27 ms

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Window attribution: self
    Source char position: 74411

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    298.6 ms360.8 ms2.3 ms2.3 ms0 ms
    https://en.wikipedia.org/wiki/Barack_Obama

    Invoker:  https://en.wikipedia.org/wiki/Barack_Obama
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    250.6 ms24.3 ms284.5 ms276.8 ms7.7 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=minerva

    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=minerva

    Forced Style And Layout Duration: 33 ms

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    143.3 ms200.2 ms3.3 ms3.1 ms0.2 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralauth.ForeignApi%7Cext.cite.ux-enhancements%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.model%7Cext.phonos.init%7Cext.relatedArticles.readMore.bootstrap%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cjquery%7Cmediawiki.ForeignApi%7Cmediawiki.ForeignApi.core%7Cmediawiki.page.media%7Cmw.cx.SiteMapper&skin=minerva&version=tjtz8

    Forced Style And Layout Duration: 24 ms

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Window attribution: self
    Source char position: 74411

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    110.7 ms115.5 ms45.2 ms33 ms12.2 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=minerva

    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=minerva

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    73.7 ms13.2 ms110.6 ms0 ms110.6 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    60.5 ms76.5 ms58.6 ms39.8 ms18.8 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=minerva

    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=ext.centralauth.ForeignApi%7Cext.cite.ux-enhancements%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.model%7Cext.phonos.init%7Cext.relatedArticles.readMore.bootstrap%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cjquery%7Cmediawiki.ForeignApi%7Cmediawiki.ForeignApi.core%7Cmediawiki.page.media%7Cmw.cx.SiteMapper&skin=minerva&version=tjtz8

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Window attribution: self
    Source char position: 74411

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

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    57.3 ms319.3 ms0.1 ms0.1 ms0 ms
    https://en.wikipedia.org/wiki/Barack_Obama

    Invoker:  https://en.wikipedia.org/wiki/Barack_Obama
    Invoker Type: classic-script
    Window attribution: self

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

    Invoker:  https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=minerva
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    44.5 ms94.5 ms0 ms0 ms0 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    39.7 ms90.7 ms25 ms25 ms0 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=minerva

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

    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.

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (250px-President_Barack_Obama.jpg) 55 625 250 312
    <img alt="Obama standing in the Oval Office with his arms folded and smiling" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/250px-President_Barack_Obama.jpg" decoding="async" width="250" height="312" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/500px-President_Barack_Obama.jpg 1.5x" data-file-width="2687" data-file-height="3356">
    Heading567 ms 16 75 328 37
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint933 ms 16 312 328 246
    <p></p>
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests10
    Total domains2
    Total transfer size365.9 KB
    Total content size1.7 MB
    Responses missing compression4
    Number of cookies3
    Third party cookies0
    Requests per response code
    20010

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b234.2 KB1.3 MB1
    css0 b21.0 KB154.1 KB1
    javascript0 b50.4 KB236.0 KB2
    image0 b55.4 KB53.2 KB2
    svg0 b4.7 KB1.7 KB4
    Total0 b365.9 KB1.7 MB10

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org1.205 s310.4 KB1.7 MB8
    upload.wikimedia.org393 ms55.4 KB53.2 KB2

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds2 weeks4 weeks
    Last modified3 minutes10 weeks23 weeks

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    101

    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 1381
    Max Potential First Input Delay 534
    Long Tasks before First Paint2162
    Long Tasks before First Contentful Paint2162
    Long Tasks before Largest Contentful Paint2162
    Long Tasks after Load Event End71321
    Total Long Tasks132093

    CPU last long task happened at 3.342 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    self25460window
    unknown432102window
    unknown801123window
    unknown97877window
    self105864window
    self1265346window
    self1845115window
    self2086534window
    self263551window
    self271268window
    self2805293window
    self3108189window
    self334271window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML397
    styleLayout467
    paintCompositeRender68
    scriptParseCompile8
    scriptEvaluation1610
    garbageCollection30
    other1407
    Events (ms)
    FunctionCall1417
    RunTask576
    CpuProfiler::StartProfiling540
    ParseHTML377
    UpdateLayoutTree287
    Layout159
    DocumentLoader::BodyLoadingFinished92
    DecodedDataDocumentParser::AppendBytes84
    V8.HandleInterrupts82
    v8.run41
    Paint41
    DocumentLoader::CommitNavigation28
    PaintImage22
    PrePaint20
    Layerize17
    v8.produceCache16
    DocumentLoader::BodyDataReceivedImpl14
    ParseAuthorStyleSheet14
    DocumentLoader::FinishedLoading12
    RunMicrotasks12
    V8.BytecodeBudgetInterrupt11

    Time spent per request

    URLCPU time (ms)
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=minerva1668
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralauth.ForeignApi%7Cext.cite.ux-enhancements%7Cext.cx.entrypoints.mffrequentlanguages%7Cext.cx.model%7Cext.phonos.init%7Cext.relatedArticles.readMore.bootstrap%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cjquery%7Cmediawiki.ForeignApi%7Cmediawiki.ForeignApi.core%7Cmediawiki.page.media%7Cmw.cx.SiteMapper&skin=minerva&version=tjtz8843
    https://en.wikipedia.org/wiki/Barack_Obama32