Page summary

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

Tested 2025-02-20 14:59:41 using Chrome 133.0.6943.53 (runtime settings).

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

Summary

MetricValue
Page metrics
Performance Score74
Total Page Transfer Size1.7 MB
Requests132
Timing metrics
TTFB [median]488 ms
First Paint [median]1.136 s
Fully Loaded [median]2.869 s
Google Web Vitals
TTFB [median]488 ms
First Contentful Paint (FCP) [median]1.136 s
Largest Contentful Paint (LCP) [median]1.136 s
Cumulative Layout Shift (CLS) [median]0.03
Total Blocking Time [median]43 ms
Max Potential FID [median]75 ms
CPU metrics
CPU long tasks [median]3
CPU longest task duration300 ms
CPU last long task happens at1.868 s
Visual Metrics
First Visual Change [median]1.133 s
Speed Index [median]1.333 s
Visual Complete 85% [median]1.200 s
Visual Complete 99% [median]2.800 s
Last Visual Change [median]2.800 s
Screenshot of run 2

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange1.133 s1.133 s1.140 s1.166 s
LastVisualChange2.666 s2.800 s2.766 s2.800 s
SpeedIndex1.311 s1.333 s1.336 s1.367 s
LargestImage2.066 s2.600 s2.493 s2.600 s
Heading2.066 s2.600 s2.493 s2.600 s
LargestContentfulPaint2.066 s2.600 s2.493 s2.600 s
LastMeaningfulPaint2.066 s2.600 s2.493 s2.600 s
VisualReadiness1.533 s1.634 s1.627 s1.667 s
VisualComplete851.200 s1.200 s1.213 s1.233 s
VisualComplete952.666 s2.800 s2.766 s2.800 s
VisualComplete992.666 s2.800 s2.766 s2.800 s
Google Web Vitals
Time To First Byte (TTFB)488 ms488 ms488 ms489 ms
Largest Contentful Paint (LCP)1.124 s1.136 s1.138 s1.160 s
First Contentful Paint (FCP)1.124 s1.136 s1.138 s1.160 s
Cumulative Layout Shift (CLS)0.03230.03230.03230.0323
More metrics
firstPaint1.124 s1.136 s1.138 s1.160 s
loadEventEnd2.625 s2.763 s2.752 s2.844 s
User Timing
mwStartup1.135 s1.136 s1.142 s1.164 s
mwCentralNoticeBanner2.026 s2.555 s2.449 s2.564 s
CPU
Total Blocking Time36 ms43 ms44 ms52 ms
Max Potential FID73 ms75 ms80 ms97 ms
CPU long tasks 2334
CPU last long task happens at1.805 s1.868 s1.869 s1.933 s
| Waterfall | | Download HAR | 

Waterfall

Run 2 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.8 sCPU Long Task duration 276 ms
1.2 sLayout Shift 0.00014 1.126 sFirst Visual Change 1.133 smwStartup 1.135 sFirst Contentful Paint 1.136 sLCP <P> 1.136 sDOM Content Loaded Time 1.149 sVisual Complete 85% 1.200 s
1.3 s
1.8 sCPU Long Task duration 71 ms
1.9 sCPU Long Task duration 81 msLayout Shift 0.00089 1.839 sLayout Shift 0.00000 1.880 s
2 s
2.1 s
2.5 sLayout Shift 0.00002 2.407 s
2.6 smwCentralNoticeBanner 2.556 sLayout Shift 0.03122 2.569 sLargest Image 2.600 sHeading 2.600 s
2.7 s
2.8 sPage Load Time 2.761 sLast Visual Change 2.800 sVisual Complete 95% 2.800 sVisual Complete 99% 2.800 s
2.9 sFully Loaded 2.863 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.1.

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 3 CPU long tasks with the total of 419 ms. The total blocking time is 43 ms and 1 long task before first contentful paint with total time of 276 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.40
    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
  • 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 101 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 1.3 MB 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/4/4c/Flag_of_Sweden.svg/125px-Flag_of_Sweden.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Great_coat_of_arms_of_...of_Sweden.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/EU-Sweden_%28orthograp...ection%29.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/EU-Sweden.svg/250px-EU-Sweden.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Increase_Neutral.svg/1...e_Neutral.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://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/11px-Increase2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Increase_Negative.svg/..._Negative.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Vendel_I_helmet_456057...helmet_456057.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Vikings-Voyages.png/29...kings-Voyages.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Bildsten_med_skepp_800...de%2C_Gotland.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Map_of_Sweden_ca_1280....weden_ca_1280.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/58/Gustav_Vasa.jpg/170px-Gustav_Vasa.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Gustave_Adolphe_at_Bre...lter-f3706497.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/Swedish_Empire.svg/220...sh_Empire.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Marten%27s_Poltava.jpg...n%27s_Poltava.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Starvation_image_from_...eslandet_1867.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Farewell_to_home%2C_G%...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Olivecrona_erlander_38..._erlander_380.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Tratado_de_Lisboa_13_1...007_%28081%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Vy_mot_Stora_Sj%C3%B6f...n_Saltoluokta.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Sand%C3%B6n_-_KMB_-_16...6001000454384.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Sweden_K%C3%B6ppen.svg...C3%B6ppen.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Sweden_Vegetation_Zone...etation_Zones.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/King_Carl_XVI_Gustaf_a..._2009_Cropped.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Ulf_Kristersson%2C_Jun...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/38/Rosenbad_2006.jpg/250px-Rosenbad_2006.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/00/Riksdag.ipred_b9dn510_..._b9dn510_4451.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/SWE-Map_Kommuner2007.s...muner2007.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Hogsta_domstolen_Stock...len_Stockholm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/P20230705AS-0417_%2853...3233830047%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Saab_JAS_39_Gripen_at_...tered%29_copy.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/30/Stridsfordon_90_Reving...evinge_2012-2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/2018_Volvo_XC90_Inscri...Pulse_AWD_2.0.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/IKEA_%288020223012%29....8020223012%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/H%26M_Canal_City_Hakat...y_Hakata_shop.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Spotify_App_%282374588...3745887894%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/Ringhals.JPG/220px-Ringhals.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/%C3%98resund_Bridge_fr...eptember_2015.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/E6-E20_Olskroksmotet_i...in_Gothenburg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Hall%2C_Stockholm_Cent...ntral_Station.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/AlfredNobel_adjusted.j...obel_adjusted.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/30/Stockholm_8721-B_%2898...9870833193%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/View_over_Gothenburg_s...kansen_Kronan.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/V%C3%A4stra_hamnen%E2%...tember_2014-2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/0065Uppsala_domkyrka.j...sala_domkyrka.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Swedishpopdensity.svg/...opdensity.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Katarina_kyrka_Februar...ruary_2015_02.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Uppsala_University_202...iversity_2023.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/ABBA_-_TopPop_1974_5.p...TopPop_1974_5.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Djurgardsbron_2008.jpg...ardsbron_2008.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/00_1110_Kalmar_domkyrk...lmar_domkyrka.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Sveriges_Television%2C...levision%2C_2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Portrait_of_August_Str...rd_Bergh_1905.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Valborg_2132_%28713599...7135992133%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Sveriges_Nationaldag_2...ionaldag_2014.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bj%C3%B6rn_Borg_%28197...79%29_cropped.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4c/Flag_of_Sweden.svg/32px-Flag_of_Sweden.svg.png
  • 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/4/4c/Wikisource-logo.svg/26...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/27p...ooks-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017....logo_2017.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-ico...o-v3-icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Gnome-globe.svg/16px-Gnome-globe.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Openstreetmap_logo.svg...tmap_logo.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/e/e2/Symbol_portal_class.svg/16p...tal_class.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Flag_of_Denmark.svg/20...f_Denmark.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Flag_of_Finland.svg/23...f_Finland.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Flag_of_Iceland.svg/21...f_Iceland.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Flag_of_Norway.svg/21p...of_Norway.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4c/Flag_of_Sweden.svg/23px-Flag_of_Sweden.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Nordic_countries_ortho...hographic.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/52/Flag_of_%C3%85land.svg...C3%85land.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Flag_of_the_Faroe_Isla...e_Islands.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Flag_of_Greenland.svg/...Greenland.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Sami_flag.svg/20px-Sami_flag.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Flag_of_the_Nordic_Cou...ncil_2016.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Flag_of_Estonia.svg/23...f_Estonia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Flag_of_Latvia.svg/23p...of_Latvia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Flag_of_Lithuania.svg/...Lithuania.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Schleswig-Hols...-Holstein.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/European_Union_main_ma..._main_map.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Agreement_on_the_Europ...omic_Area.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/5/55/WMA_button2b.png/17px-WMA_button2b.png
  • https://en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script
  • https://upload.wikimedia.org/wikipedia/commons/b/b5/Button_resize.png
  • https://upload.wikimedia.org/wikipedia/commons/d/d4/Button_hide.png
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://upload.wikimedia.org/wikipedia/commons/2/20/CloseWindow19x19.png
  • https://upload.wikimedia.org/wikipedia/commons/0/0e/Wiki_Loves_folklore_banner.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/WLF2025Banner.png/798px-WLF2025Banner.png
  • 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 image size shouldn't be too big (imageSize)The page total image size is 1.2 MB. It's really big. Is the page using the right format for the images? Can they be lazy loaded? Are they compressed as good as they can be? Make them smaller by using https://imageoptim.com/.50
    Description: Avoid having too many large images on the page. The images will not affect the first paint of the page, but it will eat bandwidth for the user.
    Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 298.5 kB and the uncompressed size is 1.2 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.7 KB62.2 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 16.2 KB42.8 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 206.5 KB830.7 KB
    https://en.wikipedia.org/w/load.php...ia.org/w/load.php 24.8 KB114.9 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 2.3 KB4.8 KB
    https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn 1.2 KB252 B
    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.1 kB (24062) 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.5 KB181.3 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/Sweden
  • 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...gin/checkLoggedIn
  • Best practice advice (88)

    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...ia.org/w/load.php has a header sourcemap that is 1195 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 27 responses that sets both a max-age and expires header. There are 132 responses that sets a server header. 0
    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/Sweden
  • 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/4/4c/Flag_of_Sweden.svg/125px-Flag_of_Sweden.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Great_coat_of_arms_of_...of_Sweden.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/EU-Sweden_%28orthograp...ection%29.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/EU-Sweden.svg/250px-EU-Sweden.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/Increase_Neutral.svg/1...e_Neutral.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://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/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://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/11px-Increase2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Increase_Negative.svg/..._Negative.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Vendel_I_helmet_456057...helmet_456057.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Vikings-Voyages.png/29...kings-Voyages.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Bildsten_med_skepp_800...de%2C_Gotland.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Map_of_Sweden_ca_1280....weden_ca_1280.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/58/Gustav_Vasa.jpg/170px-Gustav_Vasa.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Gustave_Adolphe_at_Bre...lter-f3706497.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/90/Swedish_Empire.svg/220...sh_Empire.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Marten%27s_Poltava.jpg...n%27s_Poltava.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Starvation_image_from_...eslandet_1867.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Farewell_to_home%2C_G%...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Olivecrona_erlander_38..._erlander_380.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Tratado_de_Lisboa_13_1...007_%28081%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Vy_mot_Stora_Sj%C3%B6f...n_Saltoluokta.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Sand%C3%B6n_-_KMB_-_16...6001000454384.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Sweden_K%C3%B6ppen.svg...C3%B6ppen.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Sweden_Vegetation_Zone...etation_Zones.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/King_Carl_XVI_Gustaf_a..._2009_Cropped.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Ulf_Kristersson%2C_Jun...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/38/Rosenbad_2006.jpg/250px-Rosenbad_2006.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/00/Riksdag.ipred_b9dn510_..._b9dn510_4451.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/SWE-Map_Kommuner2007.s...muner2007.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Hogsta_domstolen_Stock...len_Stockholm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/P20230705AS-0417_%2853...3233830047%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Saab_JAS_39_Gripen_at_...tered%29_copy.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/30/Stridsfordon_90_Reving...evinge_2012-2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/2018_Volvo_XC90_Inscri...Pulse_AWD_2.0.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/IKEA_%288020223012%29....8020223012%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/H%26M_Canal_City_Hakat...y_Hakata_shop.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Spotify_App_%282374588...3745887894%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/Ringhals.JPG/220px-Ringhals.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/%C3%98resund_Bridge_fr...eptember_2015.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/E6-E20_Olskroksmotet_i...in_Gothenburg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Hall%2C_Stockholm_Cent...ntral_Station.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/AlfredNobel_adjusted.j...obel_adjusted.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/30/Stockholm_8721-B_%2898...9870833193%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/View_over_Gothenburg_s...kansen_Kronan.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/V%C3%A4stra_hamnen%E2%...tember_2014-2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/0065Uppsala_domkyrka.j...sala_domkyrka.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Swedishpopdensity.svg/...opdensity.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Katarina_kyrka_Februar...ruary_2015_02.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Uppsala_University_202...iversity_2023.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/ABBA_-_TopPop_1974_5.p...TopPop_1974_5.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Djurgardsbron_2008.jpg...ardsbron_2008.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/00_1110_Kalmar_domkyrk...lmar_domkyrka.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Sveriges_Television%2C...levision%2C_2.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Portrait_of_August_Str...rd_Bergh_1905.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Valborg_2132_%28713599...7135992133%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Sveriges_Nationaldag_2...ionaldag_2014.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bj%C3%B6rn_Borg_%28197...79%29_cropped.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4c/Flag_of_Sweden.svg/32px-Flag_of_Sweden.svg.png
  • 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/4/4c/Wikisource-logo.svg/26...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/27p...ooks-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017....logo_2017.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-ico...o-v3-icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Gnome-globe.svg/16px-Gnome-globe.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Openstreetmap_logo.svg...tmap_logo.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/e/e2/Symbol_portal_class.svg/16p...tal_class.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Flag_of_Denmark.svg/20...f_Denmark.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/bc/Flag_of_Finland.svg/23...f_Finland.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/ce/Flag_of_Iceland.svg/21...f_Iceland.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Flag_of_Norway.svg/21p...of_Norway.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/4c/Flag_of_Sweden.svg/23px-Flag_of_Sweden.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Nordic_countries_ortho...hographic.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/52/Flag_of_%C3%85land.svg...C3%85land.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Flag_of_the_Faroe_Isla...e_Islands.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Flag_of_Greenland.svg/...Greenland.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Sami_flag.svg/20px-Sami_flag.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Flag_of_the_Nordic_Cou...ncil_2016.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Flag_of_Estonia.svg/23...f_Estonia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Flag_of_Latvia.svg/23p...of_Latvia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Flag_of_Lithuania.svg/...Lithuania.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Schleswig-Hols...-Holstein.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/European_Union_main_ma..._main_map.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Agreement_on_the_Europ...omic_Area.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progr...ogressive.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://upload.wikimedia.org/wikipedia/commons/thumb/5/55/WMA_button2b.png/17px-WMA_button2b.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/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://en.wikipedia.org/w/load.php...ia.org/w/load.php
  • 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://upload.wikimedia.org/wikipedia/commons/b/b5/Button_resize.png
  • https://upload.wikimedia.org/wikipedia/commons/d/d4/Button_hide.png
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • https://upload.wikimedia.org/wikipedia/commons/2/20/CloseWindow19x19.png
  • https://upload.wikimedia.org/wikipedia/commons/0/0e/Wiki_Loves_folklore_banner.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/60/WLF2025Banner.png/798px-WLF2025Banner.png
  • https://en.wikipedia.org/static/favicon/wikipedia.ico
  • https://en.wikipedia.org/static/favicon/wikipedia.ico
  • 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/Sweden
  • 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/Sweden
  • Page info

    Page info
    TitleSweden - Wikipedia
    GeneratorMediaWiki 1.44.0-wmf.16
    Width1904
    Height44456
    DOM elements11813
    Avg DOM depth15
    Max DOM depth36
    Iframes0
    Script tags5
    Local storage971.7 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 Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyzer find more information about technologies used.

    TechnologyConfidenceCategory
    MediaWiki 100  Wikis
    PHP 100  Programming languages
    Apache Traffic Server 9.2.6100  Web servers
    HSTS 100  Security
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Long Aninimation Frames | Visual Elements | Server timings | 

    Data from run 2

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)488 ms
    First Contentful Paint (FCP)1.136 s
    Largest Contentful Paint (LCP)1.136 s
    Cumulative Layout Shift (CLS)0.03
    Total Blocking Time (TBT)52 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP9603
    Time spent in recalculate style before FCP122.93 ms
    Extra timings
    TTFB488 ms
    First Paint1.136 s
    Load Event End2.762 s
    Fully loaded2.863 s
    User Timing marks
    mwStartup1.135 s
    mwCentralNoticeBanner2.556 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.136 s
    Element render delay648 ms
    TTFB488 ms
    Resource delay0 ms
    Resource load duration0 ms
    Elements that needed recalculate style before LCP9603
    Time spent in recalculate style before LCP122.93 ms
    Load time0 ms
    Size (width*height)201528
    DOM path
    div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > p:eq(2)> div:eq(1) > 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.03227 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.03122<div class="vector-column-start"></div>,<div class="mw-content-container"></div>,<div class="ib-country-map-caption"></div>
    body > div:eq(1) > div > div:eq(1),body > div:eq(1) > div > div:eq(2),body > div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > table > tbody > tr:eq(3) > td > div:eq(1)
    0.00089<div class="mw-indicators"></div>,<div class="ib-country-map-caption"></div>,<tr></tr>
    body > div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div:eq(0) > div:eq(0),body > div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > table > tbody > tr:eq(3) > td > div:eq(1),body > div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > table > tbody > tr:eq(4)
    0.00014
    0.00002<div class="mw-indicators"></div>
    body > div:eq(1) > div > div:eq(2) > main#content > div#bodyContent > div:eq(0) > div:eq(0)
    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-History > 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-Geography > 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-Government_and_politics > 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-Economy > 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-Demographics > 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
    230.4 ms309.5 ms257 ms0 ms257 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    96 ms128.3 ms74.7 ms72.1 ms2.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: 4310

    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%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.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%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&skin=vector-2022&version=m9x0t

    Forced Style And Layout Duration: 13 ms

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

    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%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.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%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&skin=vector-2022&version=m9x0t

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

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

    Forced Style And Layout Duration: 11 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
    23 ms42.8 ms33 ms24.1 ms8.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
    8.4 ms51 ms26.7 ms26.6 ms0.1 ms
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%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.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%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&skin=vector-2022&version=m9x0t

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

    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%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.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%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&skin=vector-2022&version=m9x0t

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms45.7 ms10.3 ms10.3 ms0 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 (250px-EU-Sweden_%28orthographic_projection%29.svg.png)2.600 s 1146 716 250 250
    <img src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/EU-Sweden_%28orthographic_projection%29.svg/250px-EU-Sweden_%28orthographic_projection%29.svg.png" decoding="async" width="250" height="250" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/EU-Sweden_%28orthographic_projection%29.svg/375px-EU-Sweden_%28orthographic_projection%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c2/EU-Sweden_%28orthographic_projection%29.svg/500px-EU-Sweden_%28orthographic_projection%29.svg.png 2x" data-file-width="2000" data-file-height="2000">
    Heading2.600 s 478 174 787 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint2.600 s 478 581 948 333
    <p></p>
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests132
    Total domains4
    Total transfer size1.7 MB
    Total content size3.4 MB
    Responses missing compression14
    Number of cookies2
    Third party cookies0
    Requests per response code
    200131
    3021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b183.7 KB974.5 KB1
    css0 b26.5 KB188.5 KB2
    javascript0 b291.5 KB1.1 MB8
    image0 b1.2 MB1.1 MB96
    svg0 b36.0 KB40.5 KB23
    favicon0 b1.7 KB2.7 KB1
    Total0 b1.7 MB3.4 MB131

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org6.972 s547.1 KB2.3 MB32
    upload.wikimedia.org102.663 s1.2 MB1.1 MB98
    meta.wikimedia.org100 ms2.3 KB4.8 KB1
    login.wikimedia.org315 ms1.2 KB252 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires-8 weeks0 seconds1 year
    Last modified5 minutes35 weeks11 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image0 b0
    font0 b0
    favicon1.7 KB1
    Total1.7 KB1

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript31.0 KB4
    image110.5 KB6
    font0 b0
    svg17.5 KB11
    favicon1.7 KB1
    Total160.8 KB23

    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 52
    Max Potential First Input Delay 81
    Long Tasks before First Paint1276
    Long Tasks before First Contentful Paint1276
    Long Tasks before Largest Contentful Paint1276
    Long Tasks after Load Event End00
    Total Long Tasks3428

    CPU last long task happened at 1.805 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown800276window
    self173371window
    self180581window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML148
    styleLayout558
    paintCompositeRender84
    scriptParseCompile3
    scriptEvaluation300
    garbageCollection7
    other479
    Events (ms)
    Layout336
    FunctionCall259
    RunTask246
    UpdateLayoutTree219
    PrePaint166
    ParseHTML94
    Paint73
    HTMLDocumentParser::MaybeFetchQueuedPreloads53
    Layerize18
    v8.run14
    RunMicrotasks13
    CpuProfiler::StartProfiling10

    Time spent per request

    URLCPU time (ms)
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022304
    https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%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.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%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&skin=vector-2022&version=m9x0t182