Run 2 summary

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

Tested 2024-11-21 02:36:03 using Chrome 131.0.6778.69 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Screenshots

Summary

MetricValue
Page metrics
Performance score74
Total page size1.1 MB
Requests65
Timing metrics
TTFB507 ms
First Paint1.389 s
Fully Loaded2.340 s
Google Web Vitals
TTFB507 ms
First Contentful Paint (FCP) 1.389 s
Largest Contentful Paint (LCP) 1.389 s
Cumulative Layout Shift (CLS) 0.16
Total Blocking Time714 ms
Max Potential FID407 ms
CPU metrics
CPU long tasks6
CPU last long task happens at10.031 s
Visual Metrics
First Visual Change1.400 s
Speed Index3.007 s
Visual Complete 85%10.366 s
Visual Complete 99%11.966 s
Last Visual Change12.400 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.9 sCPU Long Task duration 453 ms
1.4 sFirst Contentful Paint 1.389 sLCP <P> 1.389 smwStartup 1.391 sFirst Visual Change 1.400 s
1.5 sDOM Content Loaded Time 1.401 s
1.6 s
1.7 s
1.8 s
1.9 sPage Load Time 1.875 s
2 sCPU Long Task duration 79 ms
2.1 sCPU Long Task duration 107 ms
2.2 s
2.3 smwCentralNoticeBanner 2.243 sCPU Long Task duration 85 ms
2.4 sFully Loaded 2.340 sCPU Long Task duration 407 ms
2.8 s
2.9 s
3.1 s
9.8 s
9.9 s
10.1 sCPU Long Task duration 286 ms
10.2 s
10.4 sLayout Shift 0.03861 10.333 sLayout Shift 0.00594 10.365 sVisual Complete 85% 10.366 sLayout Shift 0.01466 10.398 s
10.5 sLayout Shift 0.01745 10.422 sLayout Shift 0.01699 10.455 sLayout Shift 0.01356 10.479 s
10.6 sLayout Shift 0.00559 10.505 sLayout Shift 0.00510 10.526 sLayout Shift 0.00837 10.547 sLayout Shift 0.00349 10.576 s
10.7 sLayout Shift 0.00607 10.604 sLayout Shift 0.00515 10.635 sLayout Shift 0.00214 10.657 sLayout Shift 0.00377 10.683 s
10.8 sLayout Shift 0.00188 10.712 sLayout Shift 0.00291 10.735 sLayout Shift 0.00248 10.761 s
10.9 sLayout Shift 0.00056 10.810 sLayout Shift 0.00163 10.851 s
11 s
11.1 sLargest Image 11.066 sHeading 11.066 sVisual Complete 95% 11.100 s
11.2 s
11.3 s
11.4 s
11.5 s
11.6 s
11.7 s
11.8 s
11.9 s
12 sVisual Complete 99% 11.966 s
12.1 s
12.2 s
12.3 s
12.4 sLast Visual Change 12.400 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 (74)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 2 blocking requests and 0 in body parser blocking (0 JavaScript and 2 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=vector-202299
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-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 6 CPU long tasks with the total of 1.417 s. The total blocking time is 714 ms and 1 long task before first contentful paint with total time of 453 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
  • self
  • self
  • self
  • Avoid doing redirects (assetsRedirects)The page has 1 redirect. 1 of the redirects are from the base domain, please fix them! 90
    Description: A redirect is one extra step for the user to download the asset. Avoid that if you want to be fast. Redirects are even more of a showstopper on mobile.
    Offenders:
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 43 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 483.8 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/en/thumb/f/f2/Edit-clear.svg/40px-Edit-clear.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/2023_Facebook_icon.svg...book_icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Facebook_logo_%282023%...282023%29.svg.png
  • https://upload.wikimedia.org/wikipedia/en/6/64/Facebook_user_page.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/11px-Increase2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Meta_Platforms_Inc._lo...ropped%29.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/f/f8/Thefacebook.png/220px-Thefacebook.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/MarkZuckerberg-crop.jp...ckerberg-crop.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Facebook_on_Nasdaq.jpe...ok_on_Nasdaq.jpeg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Oculus-Rift-CV1-Headse...Headset-Front.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Aerial_view_of_Faceboo...eptember_2019.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/President_Trump_Meets_...8765678712%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Facebook-outage-traffi...%28cropped%29.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-..._book-new.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/1/12/Original-facebook.jpg/220px...inal-facebook.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/Facebook.svg/220px-Facebook.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Screen_of_Facebook_%28...ebook_%282%29.PNG
  • https://upload.wikimedia.org/wikipedia/commons/3/38/Facebook_Like_React.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Facebook_t-shirt_with_...d_for_Hackers.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/1/1d/Information_icon4.svg/40px-...ion_icon4.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Population_pyramid_of_..._users_by_age.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Facebook_censorship.sv...ensorship.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Onavo_logo.png/220px-Onavo_logo.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Berlin_%289163009052%2...9163009052%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Ad-tech_London_2010_%2..._2010_%285%29.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/2011_Egyptian_protests...26_jan25_card.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/SF_Pride_2014_-_Stierc...4_-_Stierch_7.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/27px...y-logo-v2.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/f/fa/Wikiquote-logo.svg/23p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Scholia_logo.svg/40px-Scholia_logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Industry5.svg/19px-Industry5.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Crystal_Clear_app_linn...ghborhood.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/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/6/65/Lock-green.svg
  • https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?wikiid=enwiki&type=script
  • Long cache headers is good (cacheHeadersLong)The page has 3 requests that have a shorter cache time than 30 days (but still a cache time).97
    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=vector-2022
  • https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 442.3 kB and the uncompressed size is 1.7 MB. This is totally crazy! There is really room for improvement here. 0
    Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks?
    Offenders:
    URLTransfer sizeContent size
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022 20.4 KB61.5 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 7.7 KB22.3 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 17.1 KB58.1 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 201.5 KB798.8 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 25.1 KB121.3 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 2.7 KB14.8 KB
    https://meta.wikimedia.org/w/index.php...a.org/w/index.php 82.2 KB321.4 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 74.1 KB236.0 KB
    https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?wikiid=enwiki&type=script 1.2 KB252 B
    Make each CSS response small (optimalCssSize)https://en.wikipedia.org/w/load.php?lang=en&modules=ext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cmediawiki.page.gallery.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022 size is 23.4 kB (23365) 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 22.8 KB180.5 KB
    Don't use private headers on static content (privateAssets)The page has 4 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.70
    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/Facebook
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?wikiid=enwiki&type=script
  • Best practice advice (80)

    TitleAdviceScore
    Cumulative Layout Shift (cumulativeLayoutShift)You have a cumulative layout shift score (0.1563) that needs improvements. It is in the Google Web Vitals needs improvement range, shift higher than 0.1. You should manually check the filmstrip or video and check if it will affect the user.50
    Description: Cumulative Layout Shift measures the sum total of all individual layout shift scores for unexpected layout shift that occur. The metric is measuring visual stability by quantify how often users experience unexpected layout shifts. It is one of Google Web Vitals.
    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...ia.org/w/load.php has a header sourcemap that is 1209 characters long. 99
    Description: Do not send response headers that are too long.
    Offenders:
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • Avoid unnecessary headers (unnecessaryHeaders)There are 17 responses that sets both a max-age and expires header. There are 65 responses that sets a server header. 18
    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/Facebook
  • 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?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg
  • https://en.wikipedia.org/static/images/icons/wikipedia.png
  • https://en.wikipedia.org/static/images/icons/wikipedia.png
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg
  • https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg
  • https://upload.wikimedia.org/wikipedia/en/thumb/1/1b/Semi-protection-shackle.svg...n-shackle.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/f/f2/Edit-clear.svg/40px-Edit-clear.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/2023_Facebook_icon.svg...book_icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Facebook_logo_%282023%...282023%29.svg.png
  • https://upload.wikimedia.org/wikipedia/en/6/64/Facebook_user_page.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/11px-Increase2.svg.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://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/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/thumb/0/05/Meta_Platforms_Inc._lo...ropped%29.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/f/f8/Thefacebook.png/220px-Thefacebook.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/MarkZuckerberg-crop.jp...ckerberg-crop.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Facebook_on_Nasdaq.jpe...ok_on_Nasdaq.jpeg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Oculus-Rift-CV1-Headse...Headset-Front.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Aerial_view_of_Faceboo...eptember_2019.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/President_Trump_Meets_...8765678712%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Facebook-outage-traffi...%28cropped%29.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-..._book-new.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/1/12/Original-facebook.jpg/220px...inal-facebook.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/Facebook.svg/220px-Facebook.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Screen_of_Facebook_%28...ebook_%282%29.PNG
  • https://upload.wikimedia.org/wikipedia/commons/3/38/Facebook_Like_React.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Facebook_t-shirt_with_...d_for_Hackers.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/1/1d/Information_icon4.svg/40px-...ion_icon4.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Population_pyramid_of_..._users_by_age.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Facebook_censorship.sv...ensorship.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Onavo_logo.png/220px-Onavo_logo.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Berlin_%289163009052%2...9163009052%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Ad-tech_London_2010_%2..._2010_%285%29.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/2011_Egyptian_protests...26_jan25_card.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/SF_Pride_2014_-_Stierc...4_-_Stierch_7.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/27px...y-logo-v2.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/f/fa/Wikiquote-logo.svg/23p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Scholia_logo.svg/40px-Scholia_logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Industry5.svg/19px-Industry5.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Crystal_Clear_app_linn...ghborhood.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/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/6/65/Lock-green.svg
  • https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg
  • 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/static/images/project-logos/enwiki.png
  • https://en.wikipedia.org/static/images/project-logos/enwiki.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://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/wiki/Special:CentralAutoLogin/start?type=script
  • 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/static/favicon/wikipedia.ico
  • https://en.wikipedia.org/static/favicon/wikipedia.ico
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?wikiid=enwiki&type=script
  • https://en.wikipedia.org/beacon/impression...beacon/impression
  • 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/Facebook
  • 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/Facebook
  • Page info

    Page info
    TitleFacebook - Wikipedia
    GeneratorMediaWiki 1.44.0-wmf.3
    Width1904
    Height63463
    DOM elements18021
    Avg DOM depth14
    Max DOM depth30
    Iframes0
    Script tags6
    Local storage1017.1 KB
    Session storage0 b
    Network Information API3g
    Resource Hints
    dns-prefetch
    https://meta.wikimedia.org/
    https://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
    HSTS 100  Security
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Long Aninimation Frames | Visual Elements | Metrics from CDP | Server timings | 

    Visual Metrics

    Visual Metrics
    First Visual Change1.400 s
    Speed Index3.007 s
    Largest Image11.066 s
    Heading11.066 s
    LargestContentfulPaint11.100 s
    Last Meaningful Paint11.100 s
    Largest Contentful Paint11.100 s
    Visual Complete 85%10.366 s
    Visual Complete 95%11.100 s
    Visual Complete 99%11.966 s
    Last Visual Change12.400 s
    Visual Readiness11.000 s

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)507 ms
    First Contentful Paint (FCP)1.389 s
    Largest Contentful Paint (LCP)1.389 s
    Cumulative Layout Shift (CLS)0.16
    Total Blocking Time (TBT)714 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP15897
    Time spent in recalculate style before FCP201.745 ms
    Extra timings
    TTFB507 ms
    First Paint1.389 s
    Load Event End1.875 s
    Fully loaded2.340 s
    User Timing marks
    mwStartup1.391 s
    mwCentralNoticeBanner2.243 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.389 s
    Elements that needed recalculate style before LCP15897
    Time spent in recalculate style before LCP201.745 ms
    Load time0 ms
    Size (width*height)169260
    DOM path
    div:eq(2) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > p:eq(2)> div:eq(2) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > p:eq(2)>
    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.15635 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.03861<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>,<img alt="Increase" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/11px-Increase2.svg.png" decoding="async" width="11" height="11" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/17px-Increase2.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/22px-Increase2.svg.png 2x" data-file-width="300" data-file-height="300">
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2),body > div:eq(2) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > table:eq(1) > tbody > tr:eq(12) > td > span > span > img
    0.01745<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.01699<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.01466<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.01356<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<span class="cdx-text-input__icon cdx-text-input__start-icon"></span>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(1) > header > div:eq(1) > div#p-search > div > div > form#searchform > div#simpleSearch > div > span,body > div:eq(2)
    0.00837<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00607<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00594<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00559<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00515<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00510<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00377<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00349<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00291<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00248<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00214<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00188<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00163<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>
    body > div#wmde-banner-app,body > div:eq(1) > header,body > div:eq(2)
    0.00056<div id="wmde-banner-app" data-v-app=""></div>
    body > div#wmde-banner-app
    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.

    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
    420 ms368.1 ms452.9 ms0 ms452.9 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    374 ms407.3 ms16.7 ms5.1 ms11.6 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022

    Forced Style And Layout Duration: 304 ms

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    237 ms286.1 ms0.9 ms0 ms0.9 ms

    Forced Style And Layout Duration: 282 ms

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    136 ms101.4 ms106.6 ms103 ms3.6 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: 4309

    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Ccodex%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022%7Cwikibase.sidebar.tracking&skin=vector-2022&version=breli

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

    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Ccodex%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022%7Cwikibase.sidebar.tracking&skin=vector-2022&version=breli

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

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

    Forced Style And Layout Duration: 14 ms

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    57 ms27.7 ms85.3 ms8.1 ms77.2 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Ccodex%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022%7Cwikibase.sidebar.tracking&skin=vector-2022&version=breli

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

    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: 3231

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    15 ms43.5 ms21.5 ms10.2 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
    Source Function Name:  doPropagation
    Window attribution: self
    Source char position: 4309

    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: 3231

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms33 ms18 ms12.3 ms5.7 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms42.4 ms15.6 ms7.2 ms8.4 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Ccodex%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022%7Cwikibase.sidebar.tracking&skin=vector-2022&version=breli

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

    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.

    CDP Performance

    namevalue
    AudioHandlers0
    AudioWorkletProcessors0
    Documents15
    Frames14
    JSEventListeners2608
    LayoutObjects30472
    MediaKeySessions0
    MediaKeys0
    Nodes36917
    Resources66
    ContextLifecycleStateObservers17
    V8PerContextDatas1
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers15
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents0
    LayoutCount207
    RecalcStyleCount211
    LayoutDuration484
    RecalcStyleDuration925
    DevToolsCommandDuration78
    ScriptDuration408
    V8CompileDuration10
    TaskDuration3160
    TaskOtherDuration1255
    ThreadTime4
    ProcessTime6
    JSHeapUsedSize12181040
    JSHeapTotalSize19476480
    FirstMeaningfulPaint1389

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (150px-Facebook_logo_%282023%29.svg.png)11.066 s 1223 798 150 27
    <img alt="Facebook wordmark" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/93/Facebook_logo_%282023%29.svg/150px-Facebook_logo_%282023%29.svg.png" decoding="async" width="150" height="27" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/93/Facebook_logo_%282023%29.svg/225px-Facebook_logo_%282023%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/93/Facebook_logo_%282023%29.svg/300px-Facebook_logo_%282023%29.svg.png 2x" data-file-width="512" data-file-height="91">
    Heading11.066 s 478 445 787 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint11.100 s 478 752 948 282
    <p></p>
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Console log  | Requests loaded after onLoad event  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests65
    Total domains4
    Total transfer size1.1 MB
    Total content size3.6 MB
    Responses missing compression14
    Number of cookies2
    Third party cookies0
    Requests per response code
    20063
    2041
    3021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b251.0 KB1.4 MB1
    css0 b25.8 KB187.7 KB2
    javascript0 b431.9 KB1.6 MB9
    image0 b407.2 KB373.7 KB39
    svg0 b17.4 KB20.2 KB11
    favicon0 b1.7 KB2.7 KB1
    plain0 b546 B0 b1
    Total0 b1.1 MB3.6 MB64

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org5.168 s663.2 KB2.9 MB23
    upload.wikimedia.org22.863 s389.0 KB355.8 KB40
    meta.wikimedia.org175 ms82.2 KB321.4 KB1
    login.wikimedia.org147 ms1.2 KB252 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 year
    Last modified1 day23 weeks8 years

    Console log

    The page logs the following messages to the console.

    LevelMessage
    WARNING https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022 11:274 "This page is using the deprecated ResourceLoader module \"mediawiki.Uri\".\n[1.43] Please use browser native URL."
    SEVERE https://en.wikipedia.org/w/load.php?lang=en&modules=skins.vector.search.codex.scripts%7Cvue&skin=vector-2022&version=148qw 153 Error: <path> attribute transform: Expected transform function, "none".
    WARNING https://en.wikipedia.org/wiki/Facebook - The resource https://en.wikipedia.org/static/images/project-logos/enwiki.png was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript185.2 KB5
    image0 b0
    font0 b0
    favicon1.7 KB1
    plain546 B1
    Total187.5 KB8

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript411.5 KB8
    image8.5 KB1
    font0 b0
    favicon1.7 KB1
    plain546 B1
    Total422.2 KB12

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    201

    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 714
    Max Potential First Input Delay 407
    Long Tasks before First Paint1453
    Long Tasks before First Contentful Paint1453
    Long Tasks before Largest Contentful Paint1453
    Long Tasks after Load Event End5964
    Total Long Tasks61417

    CPU last long task happened at 10.031 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown879453window
    self196679window
    self2046107window
    self224585window
    self2360407window
    self10031286window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML86
    styleLayout1410
    paintCompositeRender223
    scriptParseCompile10
    scriptEvaluation403
    garbageCollection13
    other960
    Events (ms)
    UpdateLayoutTree926
    PrePaint501
    Layout483
    FunctionCall353
    RunTask265
    Paint137
    Layerize95
    ParseHTML82
    HitTest63
    Commit23
    CpuProfiler::StartProfiling17
    IntersectionObserverController::computeIntersections17
    PaintImage16
    RunMicrotasks16
    v8.run16
    DocumentLoader::BodyLoadingFinished15
    v8.compile10

    Time spent per request

    URLCPU time (ms)
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022459
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.bannerHistoryLogger%2CchoiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClargeBannerLimit%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Ccodex%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022%7Cwikibase.sidebar.tracking&skin=vector-2022&version=breli162
    https://meta.wikimedia.org/w/index.php?title=Special:BannerLoader&campaign=C24_WMDE_Desktop_EN_04&banner=B24_WMDE_Desktop_EN_04_var&uselang=en&debug=false22
    afterPageCompleteCheck.jpg | layoutShift.jpg | largestContentfulPaint.jpg | 

    Screenshots

    afterPageCompleteCheck.jpg

    afterPageCompleteCheck.jpg

    layoutShift.jpg

    layoutShift.jpg

    largestContentfulPaint.jpg

    largestContentfulPaint.jpg