Page summary

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

Tested 2026-03-04 08:03:26 using Chrome 144.0.7559.59 (script).(runtime settings).

Test as a logged in user

Login the user with an empty browser cache, then visit Obama and Facebook

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

Summary

MetricValue
Page metrics
Performance Score74
Total Page Transfer Size855.2 KB
Requests40
Timing metrics
TTFB [median]688 ms
First Paint [median]1.924 s
Fully Loaded [median]2.612 s
Google Web Vitals
TTFB [median]688 ms
First Contentful Paint (FCP) [median]1.924 s
Largest Contentful Paint (LCP) [median]1.924 s
Cumulative Layout Shift (CLS) [median]0.09
Interaction To Next Paint (INP) [median]1.224 s
Total Blocking Time [median]141 ms
Max Potential FID [median]103 ms
CPU metrics
CPU long tasks [median]6
CPU longest task duration404 ms
CPU last long task happens at2.551 s
Visual Metrics
First Visual Change [median]1.900 s
Speed Index [median]1.949 s
Visual Complete 85% [median]1.900 s
Visual Complete 99% [median]2.667 s
Last Visual Change [median]2.667 s
Screenshot of run 1

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange1.900 s1.900 s1.900 s1.900 s
LastVisualChange2.667 s2.667 s2.667 s2.667 s
SpeedIndex1.949 s1.949 s1.949 s1.949 s
LargestImage2.567 s2.567 s2.567 s2.567 s
Heading2.567 s2.567 s2.567 s2.567 s
LargestContentfulPaint2.567 s2.567 s2.567 s2.567 s
LastMeaningfulPaint2.567 s2.567 s2.567 s2.567 s
VisualReadiness767 ms767 ms767 ms767 ms
VisualComplete851.900 s1.900 s1.900 s1.900 s
VisualComplete952.567 s2.567 s2.567 s2.567 s
VisualComplete992.667 s2.667 s2.667 s2.667 s
Google Web Vitals
Time To First Byte (TTFB)688 ms688 ms688 ms688 ms
Largest Contentful Paint (LCP)1.924 s1.924 s1.924 s1.924 s
First Contentful Paint (FCP)1.924 s1.924 s1.924 s1.924 s
Cumulative Layout Shift (CLS)0.08540.08540.08540.0854
More metrics
firstPaint1.924 s1.924 s1.924 s1.924 s
loadEventEnd2.046 s2.046 s2.046 s2.046 s
User Timing
mwStartup960 ms960 ms960 ms960 ms
mwCentralNoticeBanner2.495 s2.495 s2.495 s2.495 s
CPU
Total Blocking Time141 ms141 ms141 ms141 ms
Max Potential FID103 ms103 ms103 ms103 ms
CPU long tasks 6666
CPU last long task happens at2.551 s2.551 s2.551 s2.551 s
| Waterfall | | Download HAR | 

Waterfall

Run 1 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
1 smwStartup 960 ms
1.5 sCPU Long Task duration 404 ms
1.9 sFirst Visual Change 1.900 sVisual Complete 85% 1.900 s
2 sFirst Contentful Paint 1.924 sLCP <P> 1.924 sDOM Content Loaded Time 1.981 s
2.1 sPage Load Time 2.046 s
2.2 sCPU Long Task duration 93 ms
2.3 sCPU Long Task duration 50 msLayout Shift 0.00067 2.285 s
2.4 sCPU Long Task duration 61 msCPU Long Task duration 103 ms
2.5 sLayout Shift 0.00068 2.466 smwCentralNoticeBanner 2.495 s
2.6 sLayout Shift 0.08408 2.532 sCPU Long Task duration 84 msVisual Complete 95% 2.567 sLargest Image 2.567 sHeading 2.567 s
2.7 sFully Loaded 2.612 sLast Visual Change 2.667 sVisual Complete 99% 2.667 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 (74)

TitleAdviceScore
Don't scale images in the browser (avoidScalingImages)The page has 5 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.50
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-25.svg
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en-25.svg
  • https://upload.wikimedia.org/wikipedia/commons/1/18/WP20Symbols_WIKIDATA.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Barack_Obama_signature...signature.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Job_Growth_by_U.S._Pre...resident_-_v1.png
  • Have a fast first contentful paint (firstContentfulPaint)First contentful paint can be improved (1.924 s). It is in the Google Web Vitals needs improvement range, slower than 1.8 seconds.50
    Description: The First Contentful Paint (FCP) metric measures the time from when the page starts loading to when any part of the page content is rendered on the screen. For this metric, "content" refers to text, images (including background images), <svg> elements, or non-white <canvas> elements.
    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 6 CPU long tasks with the total of 795 ms. The total blocking time is 141 ms and 1 long task before first contentful paint with total time of 404 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:
  • unknown
  • self
  • unknown
  • self
  • self
  • unknown
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 29 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 444.3 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/en/thumb/8/8c/Extended-protection-shackle...n-shackle.svg.png
  • 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://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Obama_portrait_crop.jp...portrait_crop.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_...ed_States.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/3/33/Ann_Dunham_with_father_and_..._and_children.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Barry_Soetoro_school_r...school_record.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Nuvola_apps_kaboodle.s..._kaboodle.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Obama_family_portrait_...he_Green_Room.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Obamas_at_church_on_In...tion_Day_2013.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Obamamiltondavis1.jpg/...amiltondavis1.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Chicago%2C_November_2%...5471954323%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/BarackObamaportrait.jp...Obamaportrait.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/ElectoralCollege2008.s...llege2008.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/ElectoralCollege2012.s...llege2012.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Modern_Liberalism_Flag...American_Flag.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Yellow_flag_waving.svg...ag_waving.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.s...ed_States.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/US_President_Barack_Ob...e_-_2009Jan20.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Official_portrait_of_B..._Barack_Obama.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Barack_Obama_addresses...ss_2009-02-24.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Barack_Obama_visiting_...rora_shooting.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/U.S._Total_Deficits_vs...ses_2001-2010.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/US_Employment_Statisti...tatistics.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Job_Growth_by_U.S._Pre...resident_-_v1.png
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://upload.wikimedia.org/wikipedia/commons/1/18/WP20Symbols_WIKIDATA.svg
  • https://upload.wikimedia.org/wikipedia/donate/0/08/Wikipedia20_banner_backgroundtop2.svg
  • https://upload.wikimedia.org/wikipedia/donate/c/c9/Wikipedia20_banner_backgroundbottom2.svg
  • Long cache headers is good (cacheHeadersLong)The page has 1 request that have a shorter cache time than 30 days (but still a cache time).99
    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
  • Make each CSS response small (optimalCssSize)https://en.wikipedia.org/w/load.php?lang=en&modules=ext.cite.styles%7Cext.echo.styles.alert%2Cbadge%7Cext.phonos.icons%2Cstyles%7Cext.tmh.player.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cext.wp25EasterEggs.styles%7Cjquery.makeCollapsible.styles%7Coojs-ui.styles.icons-alerts%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022 size is 27 kB (26988) 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 26.4 KB207.7 KB
    Don't use private headers on static content (privateAssets)The page has 2 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.90
    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/Barack_Obama
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • 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...wiki/Barack_Obama has a header content-security-policy-report-only that is 1044 characters long. 99
    Description: Do not send response headers that are too long.
    Offenders:
  • https://en.wikipedia.org/wiki/Barack_Obama
  • Avoid unnecessary headers (unnecessaryHeaders)There are 8 responses that sets both a max-age and expires header. There are 40 responses that sets a server header. 52
    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/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://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/en/thumb/8/8c/Extended-protection-shackle...n-shackle.svg.png
  • 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://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Obama_portrait_crop.jp...portrait_crop.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_...ed_States.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/3/33/Ann_Dunham_with_father_and_..._and_children.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Barry_Soetoro_school_r...school_record.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Nuvola_apps_kaboodle.s..._kaboodle.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Obama_family_portrait_...he_Green_Room.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Obamas_at_church_on_In...tion_Day_2013.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Obamamiltondavis1.jpg/...amiltondavis1.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Chicago%2C_November_2%...5471954323%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/BarackObamaportrait.jp...Obamaportrait.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/ElectoralCollege2008.s...llege2008.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/ElectoralCollege2012.s...llege2012.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Modern_Liberalism_Flag...American_Flag.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Yellow_flag_waving.svg...ag_waving.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.s...ed_States.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/US_President_Barack_Ob...e_-_2009Jan20.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Official_portrait_of_B..._Barack_Obama.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Barack_Obama_addresses...ss_2009-02-24.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Barack_Obama_visiting_...rora_shooting.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/U.S._Total_Deficits_vs...ses_2001-2010.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/US_Employment_Statisti...tatistics.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Job_Growth_by_U.S._Pre...resident_-_v1.png
  • https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arr...n-progressive.svg
  • https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/lin...r-progressive.svg
  • https://en.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e
  • 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://meta.wikimedia.org/w/index.php...a.org/w/index.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/1/18/WP20Symbols_WIKIDATA.svg
  • https://upload.wikimedia.org/wikipedia/donate/0/08/Wikipedia20_banner_backgroundtop2.svg
  • https://upload.wikimedia.org/wikipedia/donate/c/c9/Wikipedia20_banner_backgroundbottom2.svg
  • 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.46.0-wmf.17
    Width1904
    Height36169
    DOM elements23096
    Avg DOM depth17
    Max DOM depth32
    Iframes0
    Script tags6
    Local storage1.0 MB
    Session storage0 b
    Network Information API4g
    Resource Hints
    dns-prefetch
    https://meta.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 | Server timings | 

    Data from run 1

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)688 ms
    First Contentful Paint (FCP)1.924 s
    Largest Contentful Paint (LCP)1.924 s
    Cumulative Layout Shift (CLS)0.09
    Interaction to next paint (INP)1.224 s
    Total Blocking Time (TBT)141 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP16204
    Time spent in recalculate style before FCP198.098 ms
    Extra timings
    TTFB688 ms
    First Paint1.924 s
    Load Event End2.046 s
    Fully loaded2.612 s
    User Timing marks
    mwStartup960 ms
    mwCentralNoticeBanner2.495 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 1.924 s
    Element render delay1.236 s
    TTFB688 ms
    Resource delay0 ms
    Resource load duration0 ms
    Elements that needed recalculate style before LCP16204
    Time spent in recalculate style before LCP198.098 ms
    Load time0 ms
    Size (width*height)165240
    DOM path
    div:eq(2) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(1) > p:eq(4)> div:eq(2) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(1) > p:eq(4)>
    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.08542 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.08408<div class="vector-column-start"></div>,<div class="mw-content-container"></div>
    body > div:eq(2) > div > div:eq(1),body > div:eq(2) > div > div:eq(2)
    0.00068<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export"></div>,<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects"></div>,<nav class="vector-appearance-landmark" aria-label="Appearance"></nav>,<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>,<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>
    body > div:eq(2) > div > div:eq(2) > main#content > div:eq(1) > div > nav:eq(0) > div#vector-page-tools-pinned-container > div#vector-page-tools > div#p-coll-print_export,body > div:eq(2) > div > div:eq(2) > main#content > div:eq(1) > div > nav:eq(0) > div#vector-page-tools-pinned-container > div#vector-page-tools > div#p-wikibase-otherprojects,body > div:eq(2) > div > div:eq(2) > main#content > div:eq(1) > div > nav:eq(1),body > div:eq(2) > div > div:eq(1) > div:eq(1) > nav#mw-panel-toc > div#vector-toc-pinned-container > div#vector-toc > ul#mw-panel-toc-list > li#toc-Presidency_(2009–2017) > button > span:eq(0),body > div:eq(2) > div > div:eq(1) > div:eq(1) > nav#mw-panel-toc > div#vector-toc-pinned-container > div#vector-toc > ul#mw-panel-toc-list > li#toc-Cultural_and_political_image > button > span:eq(0)
    0.00067<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export"></div>,<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects"></div>,<nav class="vector-appearance-landmark" aria-label="Appearance"></nav>
    body > div:eq(2) > div > div:eq(2) > main#content > div:eq(1) > div > nav:eq(0) > div#vector-page-tools-pinned-container > div#vector-page-tools > div#p-coll-print_export,body > div:eq(2) > div > div:eq(2) > main#content > div:eq(1) > div > nav:eq(0) > div#vector-page-tools-pinned-container > div#vector-page-tools > div#p-wikibase-otherprojects,body > div:eq(2) > div > div:eq(2) > main#content > div:eq(1) > div > nav:eq(1)
    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 1.224 s.

    Event typepointerover
    Element typeP
    Element class name
    Event target#mw-content-text>div.mw-content-ltr.mw-parser-output>p
    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
    320.3 ms1.143 s0.2 ms0.2 ms0 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022

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

    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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    110.6 ms74.5 ms98.9 ms95.1 ms3.8 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=ext.cite.ux-enhancements%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.phonos.init%7Cext.quicksurveys.init%2Clib%7Cext.scribunto.logs%7Cext.uls.common%7Cjquery%7Cjquery.makeCollapsible%2Cspinner%7Cjquery.spinner.styles%7Cjquery.uls.data%7Cmediawiki.page.media%7Cmediawiki.toc%7Cmw.cx.SiteMapper&skin=vector-2022&version=14217

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

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

    Forced Style And Layout Duration: 15 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
    89.6 ms93.2 ms46.7 ms46.6 ms0.1 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.cite.ux-enhancements%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.phonos.init%7Cext.quicksurveys.init%2Clib%7Cext.scribunto.logs%7Cext.uls.common%7Cjquery%7Cjquery.makeCollapsible%2Cspinner%7Cjquery.spinner.styles%7Cjquery.uls.data%7Cmediawiki.page.media%7Cmediawiki.toc%7Cmw.cx.SiteMapper&skin=vector-2022&version=14217

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    35.1 ms12.8 ms80.5 ms80.5 ms0 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms29.4 ms28 ms0 ms28 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
    0 ms27.1 ms23.6 ms12.3 ms11.3 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
    Window attribution: self
    Source char position: 14415

    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
    cache0pass
    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)2.567 s 1319 467 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">
    Heading2.567 s 324 278 1104 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint2.567 s 324 846 1256 176
    <p></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 requests40
    Total domains3
    Total transfer size855.2 KB
    Total content size2.6 MB
    Responses missing compression7
    Number of cookies2
    Third party cookies0
    Requests per response code
    20040

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b316.6 KB1.8 MB1
    css0 b26.4 KB207.7 KB1
    javascript0 b73.8 KB239.8 KB2
    image0 b407.1 KB383.5 KB25
    svg0 b31.4 KB55.1 KB11
    Total0 b855.2 KB2.6 MB40

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org2.933 s421.4 KB2.2 MB11
    upload.wikimedia.org16.437 s429.9 KB436.1 KB28
    meta.wikimedia.org102 ms4.0 KB10.2 KB1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 year
    Last modified41 seconds31 weeks5 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript4.0 KB1
    image0 b0
    font0 b0
    svg27.2 KB7
    Total31.1 KB8

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript4.0 KB1
    image0 b0
    font0 b0
    svg27.2 KB7
    Total31.1 KB8
    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 141
    Max Potential First Input Delay 103
    Long Tasks before First Paint1404
    Long Tasks before First Contentful Paint1404
    Long Tasks before Largest Contentful Paint1404
    Long Tasks after Load Event End5391
    Total Long Tasks6795

    CPU last long task happened at 2.551 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown1471404window
    self214693window
    unknown223950window
    self230561window
    self2367103window
    unknown255184window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML89
    styleLayout632
    paintCompositeRender34
    scriptParseCompile1
    scriptEvaluation337
    garbageCollection52
    other475
    Events (ms)
    UpdateLayoutTree368
    FunctionCall296
    Layout259
    RunTask219
    PrePaint115
    ParseHTML86
    CpuProfiler::StartProfiling67
    Paint28
    V8.GC_HEAP_EMBEDDER_TRACING_EPILOGUE23
    DocumentLoader::BodyLoadingFinished17
    V8.GC_MC_INCREMENTAL_EMBEDDER_TRACING14
    v8.run11

    Time spent per request

    URLCPU time (ms)
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022338
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.cite.ux-enhancements%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.phonos.init%7Cext.quicksurveys.init%2Clib%7Cext.scribunto.logs%7Cext.uls.common%7Cjquery%7Cjquery.makeCollapsible%2Cspinner%7Cjquery.spinner.styles%7Cjquery.uls.data%7Cmediawiki.page.media%7Cmediawiki.toc%7Cmw.cx.SiteMapper&skin=vector-2022&version=14217194