Page summary

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

Tested 2025-01-18 00:43:03 using Chrome 131.0.6778.85 (script).(runtime settings).

Test visiting multiple pages

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

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

Summary

MetricValue
Page metrics
Performance Score78
Total Page Transfer Size945.8 KB
Requests68
Timing metrics
TTFB [median]122 ms
First Paint [median]951 ms
Fully Loaded [median]1.014 s
Google Web Vitals
TTFB [median]122 ms
First Contentful Paint (FCP) [median]951 ms
Largest Contentful Paint (LCP) [median]951 ms
Cumulative Layout Shift (CLS) [median]0.00
Interaction To Next Paint (INP) [median]816 ms
Total Blocking Time [median]102 ms
Max Potential FID [median]106 ms
CPU metrics
CPU long tasks [median]5
CPU longest task duration508 ms
CPU last long task happens at1.448 s
Visual Metrics
First Visual Change [median]966 ms
Speed Index [median]979 ms
Visual Complete 85% [median]966 ms
Visual Complete 99% [median]1.466 s
Last Visual Change [median]1.466 s
Screenshot of run 1

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange933 ms966 ms966 ms1.000 s
LastVisualChange1.433 s1.466 s1.459 s1.466 s
SpeedIndex945 ms979 ms980 ms1.015 s
LargestImage966 ms1.000 s1.013 s1.066 s
Heading933 ms966 ms966 ms1.000 s
LargestContentfulPaint933 ms966 ms966 ms1.000 s
LastMeaningfulPaint966 ms1.000 s1.013 s1.066 s
VisualReadiness466 ms500 ms493 ms533 ms
VisualComplete85933 ms966 ms966 ms1.000 s
VisualComplete95966 ms1.000 s1.013 s1.066 s
VisualComplete991.433 s1.466 s1.459 s1.466 s
Google Web Vitals
Time To First Byte (TTFB)120 ms122 ms121 ms122 ms
Largest Contentful Paint (LCP)937 ms951 ms961 ms992 ms
First Contentful Paint (FCP)937 ms951 ms961 ms992 ms
Cumulative Layout Shift (CLS)0000
More metrics
firstPaint937 ms951 ms961 ms992 ms
loadEventEnd1.040 s1.094 s1.216 s1.445 s
User Timing
mwStartup144 ms152 ms151 ms154 ms
CPU
Total Blocking Time81 ms102 ms97 ms111 ms
Max Potential FID93 ms106 ms104 ms113 ms
CPU long tasks 4556
CPU last long task happens at1.415 s1.448 s1.446 s1.465 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
0.2 smwStartup 152 ms
0.5 sCPU Long Task duration 466 ms
1 sFirst Contentful Paint 951 msLCP <P> 951 msDOM Content Loaded Time 952 msFirst Visual Change 966 msVisual Complete 85% 966 msHeading 966 msVisual Complete 95% 1.000 sLargest Image 1.000 s
1.1 sCPU Long Task duration 57 ms
1.2 sLayout Shift 0.00000 1.120 sCPU Long Task duration 94 ms
1.3 sCPU Long Task duration 66 msFully Loaded 1.287 s
1.5 sPage Load Time 1.445 sCPU Long Task duration 64 msLast Visual Change 1.466 sVisual Complete 99% 1.466 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
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 5 CPU long tasks with the total of 747 ms. The total blocking time is 81 ms and 1 long task before first contentful paint with total time of 466 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
  • self
  • unknown
  • unknown
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 61 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 567.1 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/1/1b/Semi-protection-shackle.svg...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/e/e9/Official_portrait_of_B..._Barack_Obama.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/ElectoralCollege2012.s...llege2012.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/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://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Obama-venice-la.jpg/22...ama-venice-la.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/PPACA_Premium_Chart.jp...Premium_Chart.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Percentage_of_Individu...%2C_1963-2015.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/P06409PS-0571_%2835946...3594694537%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Barack_Obama%27s_trip_..._2016_%289%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Barack_Obama_with_Afgh...and_Joe_Biden.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Obama_and_Biden_await_..._on_bin_Laden.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Handshake_between_the_...C3%BAl_Castro.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Barack_Obama_welcomes_...e_Oval_Office.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Barack_Obama_talks_wit...8637772147%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Vladimir_Putin_and_Bar...5-09-29%29_01.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Gallup_Poll-Approval_R...ack_Obama.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Obama_Macri_October_20..._October_2017.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/P20220405AS-1082_%2852...2067439422%29.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/28px-P_vip.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/e/ef/Flag_of_Hawaii.svg/32p...of_Hawaii.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Flag_of_Chicago%2C_Ill..._Illinois.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Illinois.svg/3..._Illinois.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Balance%2C_by_David.sv..._by_David.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/0/01/A_coloured_voting_box.svg/2...oting_box.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Blue_iPod_Nano.jpg/12px-Blue_iPod_Nano.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/IPhone_5.svg/13px-IPhone_5.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/20px-Commons-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/27px...news-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/26...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/27px...data-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progr...ogressive.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/15px-Speaker_Icon.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/1...ory_class.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/16px-...ist_class.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Seal_of_the_United_Sta...es_Senate.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Michelle_Obama_2013_of...cial_portrait.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/e/ed/Nobel_Prize.png/80px-Nobel_Prize.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/23p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg
  • https://upload.wikimedia.org/wikipedia/commons/4/4d/Icon_pdf_file.png
  • https://upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg
  • https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.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.phonos.icons%2Cstyles%7Cext.tmh.player.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022 size is 24.4 kB (24416) 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 23.8 KB185.7 KB

    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.
    Avoid unnecessary headers (unnecessaryHeaders)There are 3 responses that sets both a max-age and expires header. There are 68 responses that sets a server header. 29
    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/en/thumb/1/1b/Semi-protection-shackle.svg...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://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/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/e/e9/Official_portrait_of_B..._Barack_Obama.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/ElectoralCollege2012.s...llege2012.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/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://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Obama-venice-la.jpg/22...ama-venice-la.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/PPACA_Premium_Chart.jp...Premium_Chart.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Percentage_of_Individu...%2C_1963-2015.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/P06409PS-0571_%2835946...3594694537%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Barack_Obama%27s_trip_..._2016_%289%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Barack_Obama_with_Afgh...and_Joe_Biden.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Obama_and_Biden_await_..._on_bin_Laden.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Handshake_between_the_...C3%BAl_Castro.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Barack_Obama_welcomes_...e_Oval_Office.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Barack_Obama_talks_wit...8637772147%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Vladimir_Putin_and_Bar...5-09-29%29_01.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Gallup_Poll-Approval_R...ack_Obama.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Obama_Macri_October_20..._October_2017.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/P20220405AS-1082_%2852...2067439422%29.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/28px-P_vip.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/e/ef/Flag_of_Hawaii.svg/32p...of_Hawaii.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Flag_of_Chicago%2C_Ill..._Illinois.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Illinois.svg/3..._Illinois.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Balance%2C_by_David.sv..._by_David.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/0/01/A_coloured_voting_box.svg/2...oting_box.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Blue_iPod_Nano.jpg/12px-Blue_iPod_Nano.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/IPhone_5.svg/13px-IPhone_5.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/20px-Commons-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/27px...news-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/26...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/27px...data-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progr...ogressive.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/15px-Speaker_Icon.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/1...ory_class.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/16px-...ist_class.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Seal_of_the_United_Sta...es_Senate.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Michelle_Obama_2013_of...cial_portrait.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/e/ed/Nobel_Prize.png/80px-Nobel_Prize.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/23p...uote-logo.svg.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://upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg
  • https://upload.wikimedia.org/wikipedia/commons/4/4d/Icon_pdf_file.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://upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg
  • https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.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.44.0-wmf.12
    Width1904
    Height56456
    DOM elements21408
    Avg DOM depth17
    Max DOM depth32
    Iframes0
    Script tags5
    Local storage936.0 KB
    Session storage0 b
    Network Information API3g
    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 | 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)122 ms
    First Contentful Paint (FCP)951 ms
    Largest Contentful Paint (LCP)951 ms
    Cumulative Layout Shift (CLS)0.00
    Interaction to next paint (INP)816 ms
    Total Blocking Time (TBT)81 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP15582
    Time spent in recalculate style before FCP215.315 ms
    Extra timings
    TTFB122 ms
    First Paint951 ms
    Load Event End1.445 s
    Fully loaded1.287 s
    User Timing marks
    mwStartup152 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 951 ms
    Elements that needed recalculate style before LCP15582
    Time spent in recalculate style before LCP215.315 ms
    Load time0 ms
    Size (width*height)187500
    DOM path
    div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > p:eq(3)> div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > p:eq(3)>
    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.00000 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.00000<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>,<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>,<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>,<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>,<span class="vector-icon mw-ui-icon-wikimedia-expand"></span>
    body > div:eq(1) > 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-Early_life_and_career > button > span:eq(0),body > div:eq(1) > 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-Legislative_career > button > span:eq(0),body > div:eq(1) > 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-Presidential_campaigns > button > span:eq(0),body > div:eq(1) > 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(1) > 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)
    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 816 ms.

    Event typepointerover
    Element typeA
    Element class namemw-redirect
    Event target#mw-content-text>div.mw-content-ltr.mw-parser-output>p>a.mw-redirect
    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
    415 ms722.5 ms31.5 ms2.9 ms28.6 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
    Window attribution: self
    Source char position: 14427

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    110 ms126.4 ms65.6 ms64 ms1.6 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.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.common%7Cjquery%7Cjquery.makeCollapsible%7Cjquery.uls.data%7Cmediawiki.page.media%7Cmediawiki.toc%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions&skin=vector-2022&version=lcsjv

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

    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.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.common%7Cjquery%7Cjquery.makeCollapsible%7Cjquery.uls.data%7Cmediawiki.page.media%7Cmediawiki.toc%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions&skin=vector-2022&version=lcsjv

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    29 ms57.3 ms47.7 ms24.8 ms22.9 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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    29 ms80 ms43 ms34.3 ms8.7 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=skins.vector.js&skin=vector-2022&version=nnlr7

    Forced Style And Layout Duration: 7 ms

    Invoker:  IntersectionObserverCallback
    Invoker Type: user-callback
    Window attribution: self
    Source char position: 34137

    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.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.common%7Cjquery%7Cjquery.makeCollapsible%7Cjquery.uls.data%7Cmediawiki.page.media%7Cmediawiki.toc%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions&skin=vector-2022&version=lcsjv

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    21 ms12.9 ms64.1 ms60.7 ms3.4 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    11 ms15.3 ms57.7 ms50 ms7.7 ms
    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: 3233

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms24.5 ms25.5 ms0.1 ms25.4 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms46.3 ms3.7 ms2.8 ms0.9 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 (220px-President_Barack_Obama.jpg)1.000 s 1161 313 220 275
    <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/220px-President_Barack_Obama.jpg" decoding="async" width="220" height="275" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/330px-President_Barack_Obama.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/440px-President_Barack_Obama.jpg 2x" data-file-width="2687" data-file-height="3356">
    Heading966 ms 478 90 787 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint966 ms 478 688 948 384
    <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 requests68
    Total domains2
    Total transfer size945.8 KB
    Total content size2.6 MB
    Responses missing compression4
    Number of cookies1
    Third party cookies0
    Requests per response code
    20068

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b291.9 KB1.7 MB1
    css0 b23.8 KB185.7 KB1
    javascript0 b72.2 KB267.4 KB1
    image0 b549.7 KB499.3 KB58
    svg0 b8.0 KB4.3 KB7
    Total0 b945.8 KB2.6 MB68

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org1.569 s392.0 KB2.1 MB7
    upload.wikimedia.org50.050 s553.8 KB502.3 KB61

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 year
    Last modified8 minutes31 weeks8 years

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    100

    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 81
    Max Potential First Input Delay 94
    Long Tasks before First Paint1466
    Long Tasks before First Contentful Paint1466
    Long Tasks before Largest Contentful Paint1466
    Long Tasks after Load Event End164
    Total Long Tasks5747

    CPU last long task happened at 1.455 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown429466window
    self106757window
    self114394window
    unknown125166window
    unknown145564window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML93
    styleLayout641
    paintCompositeRender22
    scriptParseCompile1
    scriptEvaluation302
    garbageCollection28
    other445
    Events (ms)
    UpdateLayoutTree367
    FunctionCall272
    Layout272
    RunTask205
    CpuProfiler::StartProfiling104
    ParseHTML88
    PrePaint82
    Paint18
    DocumentLoader::BodyLoadingFinished17
    V8.GC_MC_MARK_EMBEDDER_TRACING10

    Time spent per request

    URLCPU time (ms)
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022309
    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.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.common%7Cjquery%7Cjquery.makeCollapsible%7Cjquery.uls.data%7Cmediawiki.page.media%7Cmediawiki.toc%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions&skin=vector-2022&version=lcsjv155