Run 1 summary

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

Tested 2026-03-28 03:26:31 using Chrome 146.0.7680.80 (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 Screenshots

Summary

MetricValue
Page metrics
Performance score77
Total page size781.6 KB
Requests30
Timing metrics
TTFB603 ms
First Paint1.224 s
Fully Loaded6.701 s
Google Web Vitals
TTFB603 ms
First Contentful Paint (FCP) 1.224 s
Largest Contentful Paint (LCP) 1.224 s
Cumulative Layout Shift (CLS) 0.00
Total Blocking Time98 ms
Max Potential FID83 ms
CPU metrics
CPU long tasks8
CPU last long task happens at1.829 s
Visual Metrics
First Visual Change1.233 s
Speed Index1.573 s
Visual Complete 85%1.233 s
Visual Complete 99%9.566 s
Last Visual Change17.133 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.9 smwStartup 874 ms
1.1 sCPU Long Task duration 158 ms
1.2 sCPU Long Task duration 73 ms
1.3 sFirst Contentful Paint 1.224 sLCP <P> 1.224 sFirst Visual Change 1.233 sVisual Complete 85% 1.233 sLargest Image 1.233 sHeading 1.233 sVisual Complete 95% 1.266 sCPU Long Task duration 83 ms
1.4 s
1.5 sCPU Long Task duration 65 msDOM Content Loaded Time 1.477 s
1.6 sCPU Long Task duration 66 ms
1.7 sCPU Long Task duration 59 msLayout Shift 0.00119 1.682 s
1.8 sCPU Long Task duration 54 ms
1.9 sCPU Long Task duration 71 ms
2 sPage Load Time 1.905 s
2.1 s
2.2 s
2.3 s
2.4 s
2.5 s
2.6 s
2.7 s
2.8 s
2.9 s
3 s
3.1 s
3.2 s
3.3 s
3.4 s
3.5 s
3.6 s
3.7 s
3.8 s
3.9 s
4 s
4.1 s
4.2 s
4.3 s
4.4 s
4.5 s
4.6 s
4.7 s
4.8 s
4.9 s
5 s
5.1 s
5.2 s
5.3 s
5.4 s
5.5 s
5.6 s
5.7 s
5.8 s
5.9 s
6 s
6.1 s
6.2 s
6.3 s
6.4 s
6.5 s
6.6 s
6.7 s
6.8 sFully Loaded 6.701 s
6.9 s
7 s
7.1 s
7.2 s
7.3 s
7.4 s
7.5 s
7.6 s
7.7 s
7.8 s
7.9 s
8 s
8.1 s
8.2 s
8.3 s
8.4 s
8.5 s
8.6 s
8.7 s
8.8 s
8.9 s
9 s
9.1 s
9.2 s
9.3 s
9.4 s
9.5 s
9.6 sVisual Complete 99% 9.566 s
9.7 s
9.8 s
9.9 s
10 s
10.1 s
10.2 s
10.3 s
10.4 s
10.5 s
10.6 s
10.7 s
10.8 s
10.9 s
11 s
11.1 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 s
12.1 s
12.2 s
12.3 s
12.4 s
12.5 s
12.6 s
12.7 s
12.8 s
12.9 s
13 s
13.1 s
13.2 s
13.3 s
13.4 s
13.5 s
13.6 s
13.7 s
13.8 s
13.9 s
14 s
14.1 s
14.2 s
14.3 s
14.4 s
14.5 s
14.6 s
14.7 s
14.8 s
14.9 s
15 s
15.1 s
15.2 s
15.3 s
15.4 s
15.5 s
15.6 s
15.7 s
15.8 s
15.9 s
16 s
16.1 s
16.2 s
16.3 s
16.4 s
16.5 s
16.6 s
16.7 s
16.8 s
16.9 s
17 s
17.1 s
17.2 sLast Visual Change 17.133 s
| Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.1.3.

I am the coach

Coach score

Performance advice (77)

TitleAdviceScore
Don't scale images in the browser (avoidScalingImages)The page has 3 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.70
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/thumb/5/5d/Population_pyramid_of_..._users_by_age.png
  • 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 8 CPU long tasks with the total of 629 ms. The total blocking time is 98 ms and 2 long tasks before first contentful paint with total time of 231 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
  • unknown
  • unknown
  • unknown
  • self
  • self
  • unknown
  • unknown
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 25 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 311.5 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/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/20px-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/commons/thumb/f/fc/MarkZuckerberg-crop.jp...ckerberg-crop.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/1/12/Original-facebook.jpg/250px...inal-facebook.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/Facebook.svg/250px-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/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/f/f3/PRISM_Collection_Detai...ction_Details.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Onavo_logo.png/250px-Onavo_logo.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Hands_Off%21_protest%2...5%2C_2025-053.jpg
  • 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/commons/thumb/2/2a/Industry5.svg/40px-Industry5.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Crystal_Clear_app_linn...ghborhood.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2....ogo-en-v2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Scholia_logo.svg/40px-Scholia_logo.svg.png
  • 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.chart.styles%7Cext.cite.styles%7Cext.echo.styles.alert%2Cbadge%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cext.wp25EasterEggs.styles%7Cjquery.makeCollapsible.styles%7Cmediawiki.page.gallery.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 26.7 kB (26678) 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.1 KB206.8 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.
    Do not send too long headers (longHeaders)https://en.wikipedia.org/wiki/Facebook has a header content-security-policy that is 1388 characters long. https://en.wikipedia.org/wiki/Facebook has a header content-security-policy-report-only that is 1397 characters long. 98
    Description: Do not send response headers that are too long.
    Offenders:
  • https://en.wikipedia.org/wiki/Facebook
  • https://en.wikipedia.org/wiki/Facebook
  • Avoid unnecessary headers (unnecessaryHeaders)There are 3 responses that sets both a max-age and expires header. There are 30 responses that sets a server header. 67
    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/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...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/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/20px-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/commons/thumb/f/fc/MarkZuckerberg-crop.jp...ckerberg-crop.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/1/12/Original-facebook.jpg/250px...inal-facebook.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/Facebook.svg/250px-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/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/f/f3/PRISM_Collection_Detai...ction_Details.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Onavo_logo.png/250px-Onavo_logo.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Hands_Off%21_protest%2...5%2C_2025-053.jpg
  • 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/commons/thumb/2/2a/Industry5.svg/40px-Industry5.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Crystal_Clear_app_linn...ghborhood.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Wiktionary-logo-en-v2....ogo-en-v2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Scholia_logo.svg/40px-Scholia_logo.svg.png
  • https://en.wikipedia.org/w/extensions/WP25EasterEggs/resources/media/video/phone-idle-light.webm
  • https://en.wikipedia.org/ins-502b/v2/events?hasty=true
  • Privacy advice (94)

    TitleAdviceScore
    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.46.0-wmf.21
    Width1904
    Height29442
    DOM elements14029
    Avg DOM depth14
    Max DOM depth30
    Iframes0
    Script tags5
    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
    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.233 s
    Speed Index1.573 s
    Largest Image1.233 s
    Heading1.233 s
    LargestContentfulPaint1.233 s
    Last Meaningful Paint1.233 s
    Largest Contentful Paint1.233 s
    Visual Complete 85%1.233 s
    Visual Complete 95%1.266 s
    Visual Complete 99%9.566 s
    Last Visual Change17.133 s
    Visual Readiness15.900 s

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)603 ms
    First Contentful Paint (FCP)1.224 s
    Largest Contentful Paint (LCP)1.224 s
    Cumulative Layout Shift (CLS)0.00
    Total Blocking Time (TBT)98 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP7927
    Time spent in recalculate style before FCP117.398 ms
    Extra timings
    TTFB603 ms
    First Paint1.224 s
    Load Event End1.905 s
    Fully loaded6.701 s
    User Timing marks
    mwStartup874 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 1.224 s
    Element render delay621 ms
    TTFB603 ms
    Resource delay0 ms
    Resource load duration0 ms
    Elements that needed recalculate style before LCP7927
    Time spent in recalculate style before LCP117.398 ms
    Load time0 ms
    Size (width*height)101088
    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.00119 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.00119<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects"></div>,<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export"></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-wikibase-otherprojects,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(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-Criticisms_and_controversies > 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-Impact > 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.

    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
    101.4 ms395.4 ms142.2 ms0.1 ms142.1 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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    72 ms69.4 ms55.8 ms35.7 ms20.1 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.chart.bootstrap%7Cjquery&skin=vector-2022&version=s42id

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

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

    Forced Style And Layout Duration: 21 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
    37 ms24.1 ms76.2 ms0 ms76.2 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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    28.8 ms21.3 ms68.4 ms0 ms68.4 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.chart.bootstrap%7Cjquery&skin=vector-2022&version=s42id

    Invoker:  https://en.wikipedia.org/w/load.php?lang=en&modules=ext.chart.bootstrap%7Cjquery&skin=vector-2022&version=s42id
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    23.9 ms39.6 ms47.6 ms0.1 ms47.5 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.chart.bootstrap%7Cjquery&skin=vector-2022&version=s42id

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    22.5 ms24.1 ms60 ms0.1 ms59.9 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    21.8 ms7.3 ms68 ms0.1 ms67.9 ms
    No availible script information.

    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.

    CDP Performance

    namevalue
    AudioHandlers0
    AudioWorkletProcessors0
    Documents45
    Frames41
    JSEventListeners4371
    LayoutObjects22617
    MediaKeySessions0
    MediaKeys0
    Nodes79309
    Resources180
    ContextLifecycleStateObservers120
    V8PerContextDatas3
    WorkerGlobalScopes0
    UACSSResources3
    RTCPeerConnections0
    ResourceFetchers45
    AdSubframes0
    DetachedScriptStates0
    ArrayBufferContents0
    LayoutCount14
    RecalcStyleCount19
    LayoutDuration188
    RecalcStyleDuration316
    DevToolsCommandDuration61
    ScriptDuration226
    V8CompileDuration1
    TaskDuration1217
    TaskOtherDuration425
    ThreadTime2
    ProcessTime12
    JSHeapUsedSize18587336
    JSHeapTotalSize23875584
    FirstMeaningfulPaint1220

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (Facebook_user_page.png)1.233 s 1321 424 300 439
    <img alt="This is a screenshot of Mark Zuckerburg's Facebook profile. It includes his profile photo and a header photo of llamas." src="//upload.wikimedia.org/wikipedia/en/6/64/Facebook_user_page.png" decoding="async" width="300" height="439" class="mw-file-element" data-file-width="261" data-file-height="382">
    Heading1.233 s 324 90 1104 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint1.233 s 324 460 1256 110
    <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  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests30
    Total domains2
    Total transfer size781.6 KB
    Total content size1.9 MB
    Responses missing compression3
    Number of cookies1
    Third party cookies0
    Requests per response code
    20029
    2021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b202.2 KB1.1 MB1
    css0 b26.1 KB206.8 KB1
    javascript0 b40.5 KB139.0 KB1
    image0 b304.2 KB280.8 KB25
    video0 b207.8 KB206.9 KB1
    plain0 b867 B0 b1
    Total0 b781.6 KB1.9 MB30

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org2.002 s477.4 KB1.7 MB5
    upload.wikimedia.org6.635 s304.2 KB280.8 KB25

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 year
    Last modified1 minute48 weeks9 years

    Console log

    No console log messages.

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image0 b0
    font0 b0
    video207.8 KB1
    plain867 B1
    Total208.6 KB2

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image111.3 KB10
    font0 b0
    video207.8 KB1
    plain867 B1
    Total319.9 KB12
    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 98
    Max Potential First Input Delay 83
    Long Tasks before First Paint2231
    Long Tasks before First Contentful Paint2231
    Long Tasks before Largest Contentful Paint2231
    Long Tasks after Load Event End00
    Total Long Tasks8629

    CPU last long task happened at 1.829 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown1008158window
    unknown119973window
    unknown129783window
    unknown140465window
    self155866window
    self162659window
    unknown172554window
    unknown182971window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML59
    styleLayout504
    paintCompositeRender38
    scriptParseCompile1
    scriptEvaluation217
    garbageCollection28
    other354
    Events (ms)
    UpdateLayoutTree314
    RunTask195
    FunctionCall185
    Layout182
    PrePaint77
    ParseHTML56
    Paint33
    CpuProfiler::StartProfiling32
    DocumentLoader::BodyLoadingFinished12
    V8.GC_MC_INCREMENTAL_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-2022225
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.chart.bootstrap%7Cjquery&skin=vector-2022&version=s42id118
    https://en.wikipedia.org/w/load.php?lang=en&modules=skins.vector.js&skin=vector-2022&version=jrfkr15
    afterPageCompleteCheck.jpg | layoutShift.jpg | largestContentfulPaint.jpg | 

    Screenshots

    afterPageCompleteCheck.jpg

    afterPageCompleteCheck.jpg

    layoutShift.jpg

    layoutShift.jpg

    largestContentfulPaint.jpg

    largestContentfulPaint.jpg