Run 5 summary

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

Tested 2024-11-21 02:29:19 using Chrome 131.0.6778.69 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Screenshots

Summary

MetricValue
Page metrics
Performance score72
Total page size1.7 MB
Requests144
Timing metrics
TTFB507 ms
First Paint1.361 s
Fully Loaded11.125 s
Google Web Vitals
TTFB507 ms
First Contentful Paint (FCP) 1.361 s
Largest Contentful Paint (LCP) 1.361 s
Cumulative Layout Shift (CLS) 0.16
112 ms
Total Blocking Time668 ms
Max Potential FID422 ms
CPU metrics
CPU long tasks6
CPU last long task happens at10.419 s
Visual Metrics
First Visual Change1.366 s
Speed Index3.172 s
Visual Complete 85%10.800 s
Visual Complete 99%13.400 s
Last Visual Change14.733 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 431 ms
1.4 sFirst Contentful Paint 1.361 sLCP <P> 1.361 sFirst Visual Change 1.366 smwStartup 1.389 s
1.5 sDOM Content Loaded Time 1.407 s
2.1 sCPU Long Task duration 90 ms
2.2 sCPU Long Task duration 97 ms
2.3 s
2.5 sCPU Long Task duration 71 ms
2.6 s
2.8 sCPU Long Task duration 422 ms
3 smwCentralNoticeBanner 2.915 s
3.2 sPage Load Time 3.182 s
9.7 s
9.9 s
10 s
10.5 sCPU Long Task duration 238 ms
10.7 sLayout Shift 0.02500 10.671 sLayout Shift 0.00386 10.696 s
10.8 sLayout Shift 0.01575 10.738 sLayout Shift 0.01465 10.762 sVisual Complete 85% 10.800 s
10.9 sLayout Shift 0.01745 10.803 sLayout Shift 0.01699 10.831 sLayout Shift 0.00720 10.863 sLayout Shift 0.01203 10.883 s
11 sLayout Shift 0.00510 10.906 sLayout Shift 0.00837 10.938 sLayout Shift 0.00349 10.963 sLayout Shift 0.00888 10.997 s
11.1 sLayout Shift 0.00235 11.017 sLayout Shift 0.00214 11.039 sLayout Shift 0.00376 11.059 sLayout Shift 0.00188 11.088 s
11.2 sLayout Shift 0.00152 11.107 sFully Loaded 11.125 sLayout Shift 0.00282 11.135 sLayout Shift 0.00235 11.180 s
11.3 sLayout Shift 0.00189 11.247 s
11.4 s
11.5 sHeading 11.433 sLargest Image 11.466 s
11.6 s
11.7 s
11.8 s
11.9 sVisual Complete 95% 11.833 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 sVisual Complete 99% 13.400 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 sLast Visual Change 14.733 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 (72)

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 4 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.60
    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
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Elephanta_Caves_%28278...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Unknown%2C_Kangra%2C_I...e_Art_Project.jpg
  • 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.349 s. The total blocking time is 668 ms and 1 long task before first contentful paint with total time of 431 ms. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks.0
    Description: Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler.
    Offenders:
  • unknown
  • self
  • self
  • unknown
  • 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 119 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.1 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/e/e7/Cscr-featured.svg/20px-Cscr-featured.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/8/8c/Extended-protection-shackle...n-shackle.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/125px-Flag_of_India.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/Emblem_of_India.svg/60..._of_India.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/India_%28orthographic_...ection%29.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/thumb/b/b0/Increase2.svg/11px-Increase2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Decrease_Positive.svg/..._Positive.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Battle_at_Lanka%2C_Ram...ur%2C_1649-53.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Cave_26%2C_Ajanta.jpg/..._26%2C_Ajanta.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Gopuram_Corner_View_of...swara_Temple..JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Qutb_minar_ruins.jpg/1...b_minar_ruins.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Agra_Fort_DistantTaj.J...rt_DistantTaj.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/India_1835_2_Mohurs.jp...1835_2_Mohurs.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/British_Indian_Empire_...teer_of_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Nehru_gandhi.jpg/180px-Nehru_gandhi.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/Tungabhadra_River_and_...Coracle_Boats.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Parked_boats_at_Anjarl...Anjarle_Creek.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Panthera_tigris_tigris...doba_20150306.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Axis_axis_%28Nagarhole...le%2C_2010%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Maharajah_Ramanuj_Prat...ill_1948_BNHS.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Rajagopal_speaking_to_...2007%2C_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Barack_Obama_at_Parlia...h_houses_2010.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Rashtrapati_Bhavan_Wid...w_Delhi_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Political_map_of_India..._India_EN.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Jawaharlal_Nehru%2C_Na...d_in_Belgrade.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Indian_Air_Force_conti...ly_14%2C_2009.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Modi_Nieto_Mexico_June...ico_June_2016.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/88/Plowing_the_land_in_In...d_traditional.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/ILRI%2C_Stevie_Mann_-_...than%2C_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Women_at_work%2C_Gujar...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/38/Bangalore_Panorama_edi...anorama_edit1.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Cherry_Resort_inside_T...chi%2C_Sikkim.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Female_health_workers_...4332433890%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/South_Asian_Language_F...uage_Families.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Interior_of_San_Thome_...home_Basilica.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Sikh_pilgrim_at_the_Go...tsar%2C_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Bhutesvara_Yakshis_Mat...tury_CE_front.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/MET_DT5237_%28cropped%...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Elephanta_Caves_%28278...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Shiva_as_Lord_of_the_D...28Nataraja%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Jahangir_Receives_Prin...ewar_Campaign.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Unknown%2C_Kangra%2C_I...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Aks_The_Reflection_Taj...ion_Taj_Mahal.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Kuchipudi_Performer_DS..._Performer_DS.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Muslims_praying_in_mos...ar%2C_Kashmir.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/47_Raika_School_-_eati...3384824242%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/India_School.jpg/232px-India_School.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/Water_pump%2C_Varanasi...60%29_Cropped.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Strolling_Shoppers_in_...Paltan_Bazaar.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Making_Khameeri_Roti_i...ld_Delhi.webm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/South_Indian_Thali_Cro...Thali_Cropped.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Odia_Mutton_Curry_%28M...ri%29_Rotated.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/Filles_jouant_%C3%A0_l...Jaura%2C_Inde.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Sachin_Tendulkar_about..._test_cricket.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/21px-Flag_of_India.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/P_countries-vector.svg...es-vector.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Asia_%28orthographic_p...ection%29.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/commons/thumb/e/e3/South_Asia_%28orthogra...oundaries.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/22px-Flag_of_Brazil.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/f/f3/Flag_of_Russia.svg/23px-Flag_of_Russia.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/23px-Flag_of_India.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s..._of_China.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Flag_of_South_Africa.s...th_Africa.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fe/Flag_of_Egypt.svg/23px..._of_Egypt.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Flag_of_Ethiopia.svg/2..._Ethiopia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/23px-Flag_of_Iran.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Flag_of_the_United_Ara..._Emirates.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Flag_of_Belarus.svg/23...f_Belarus.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Flag_of_Kazakhstan.svg...azakhstan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Flag_of_Kyrgyzstan.svg...yrgyzstan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Flag_of_Pakistan.svg/2..._Pakistan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Flag_of_Tajikistan.svg...ajikistan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Flag_of_Uzbekistan.svg...zbekistan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Flag_of_Mongolia.svg/2..._Mongolia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Flag_of_Armenia.svg/23...f_Armenia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Flag_of_Azerbaijan.svg...zerbaijan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Flag_of_Bahrain.svg/23...f_Bahrain.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Flag_of_Cambodia.svg/2..._Cambodia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Flag_of_Kuwait.svg/23p...of_Kuwait.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Flag_of_Maldives.svg/2..._Maldives.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Flag_of_Myanmar.svg/23...f_Myanmar.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Flag_of_Nepal.svg/12px..._of_Nepal.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Qatar.svg/23px..._of_Qatar.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Flag_of_Saudi_Arabia.s...di_Arabia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Flag_of_Sri_Lanka.svg/...Sri_Lanka.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/23p...of_Turkey.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Flag_of_Turkmenistan.s...kmenistan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/23...f_Algeria.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Flag_of_Bangladesh.svg...angladesh.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Flag_of_Iraq.svg/23px-Flag_of_Iraq.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Flag_of_Israel.svg/21p...of_Israel.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Flag_of_Laos.svg/23px-Flag_of_Laos.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Flag_of_Syria.svg/23px..._of_Syria.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Asia_%28orthographic_p...ection%29.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/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://upload.wikimedia.org/wikipedia/commons/4/4c/Wikisource-logo.svg
  • 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://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://upload.wikimedia.org/wikipedia/commons/b/b5/Button_resize.png
  • https://upload.wikimedia.org/wikipedia/commons/d/d4/Button_hide.png
  • https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?wikiid=enwiki&type=script
  • Long cache headers is good (cacheHeadersLong)The page has 4 requests that have a shorter cache time than 30 days (but still a cache time).96
    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
  • https://en.wikipedia.org/api/rest_v1/page/summary/India_(disambiguation)
  • Total image size shouldn't be too big (imageSize)The page total image size is 966.4 kB. 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 455.8 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.5 KB61.5 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.1 KB815.7 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.phonos.icons%2Cstyles%7Cext.tmh.player.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 24.6 kB (24617) 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 24.0 KB187.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/India
  • 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.1575) 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 1290 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 18 responses that sets both a max-age and expires header. There are 144 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/India
  • 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/e/e7/Cscr-featured.svg/20px-Cscr-featured.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/8/8c/Extended-protection-shackle...n-shackle.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/125px-Flag_of_India.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/Emblem_of_India.svg/60..._of_India.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/India_%28orthographic_...ection%29.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/extensions/WikimediaBadges/resources/images/badge-silver-star.png?70a8c
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/11px-Increase2.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Decrease_Positive.svg/..._Positive.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Battle_at_Lanka%2C_Ram...ur%2C_1649-53.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Cave_26%2C_Ajanta.jpg/..._26%2C_Ajanta.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Gopuram_Corner_View_of...swara_Temple..JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Qutb_minar_ruins.jpg/1...b_minar_ruins.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Agra_Fort_DistantTaj.J...rt_DistantTaj.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/India_1835_2_Mohurs.jp...1835_2_Mohurs.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/British_Indian_Empire_...teer_of_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Nehru_gandhi.jpg/180px-Nehru_gandhi.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/19/Tungabhadra_River_and_...Coracle_Boats.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Parked_boats_at_Anjarl...Anjarle_Creek.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/da/Panthera_tigris_tigris...doba_20150306.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Axis_axis_%28Nagarhole...le%2C_2010%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d1/Maharajah_Ramanuj_Prat...ill_1948_BNHS.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Rajagopal_speaking_to_...2007%2C_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Barack_Obama_at_Parlia...h_houses_2010.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Rashtrapati_Bhavan_Wid...w_Delhi_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Political_map_of_India..._India_EN.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Jawaharlal_Nehru%2C_Na...d_in_Belgrade.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Indian_Air_Force_conti...ly_14%2C_2009.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Modi_Nieto_Mexico_June...ico_June_2016.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/88/Plowing_the_land_in_In...d_traditional.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/ILRI%2C_Stevie_Mann_-_...than%2C_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Women_at_work%2C_Gujar...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/38/Bangalore_Panorama_edi...anorama_edit1.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Cherry_Resort_inside_T...chi%2C_Sikkim.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Female_health_workers_...4332433890%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/South_Asian_Language_F...uage_Families.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Interior_of_San_Thome_...home_Basilica.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Sikh_pilgrim_at_the_Go...tsar%2C_India.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Bhutesvara_Yakshis_Mat...tury_CE_front.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/MET_DT5237_%28cropped%...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Elephanta_Caves_%28278...%28cropped%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Shiva_as_Lord_of_the_D...28Nataraja%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Jahangir_Receives_Prin...ewar_Campaign.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Unknown%2C_Kangra%2C_I...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Aks_The_Reflection_Taj...ion_Taj_Mahal.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Kuchipudi_Performer_DS..._Performer_DS.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Muslims_praying_in_mos...ar%2C_Kashmir.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/47_Raika_School_-_eati...3384824242%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/India_School.jpg/232px-India_School.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/Water_pump%2C_Varanasi...60%29_Cropped.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/Strolling_Shoppers_in_...Paltan_Bazaar.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Making_Khameeri_Roti_i...ld_Delhi.webm.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/South_Indian_Thali_Cro...Thali_Cropped.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Odia_Mutton_Curry_%28M...ri%29_Rotated.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/Filles_jouant_%C3%A0_l...Jaura%2C_Inde.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Sachin_Tendulkar_about..._test_cricket.jpg
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/21px-Flag_of_India.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/P_countries-vector.svg...es-vector.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Asia_%28orthographic_p...ection%29.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/commons/thumb/e/e3/South_Asia_%28orthogra...oundaries.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/0/05/Flag_of_Brazil.svg/22px-Flag_of_Brazil.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/f/f3/Flag_of_Russia.svg/23px-Flag_of_Russia.svg.png
  • https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/23px-Flag_of_India.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Flag_of_the_People%27s..._of_China.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Flag_of_South_Africa.s...th_Africa.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fe/Flag_of_Egypt.svg/23px..._of_Egypt.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Flag_of_Ethiopia.svg/2..._Ethiopia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Flag_of_Iran.svg/23px-Flag_of_Iran.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Flag_of_the_United_Ara..._Emirates.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Flag_of_Belarus.svg/23...f_Belarus.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Flag_of_Kazakhstan.svg...azakhstan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Flag_of_Kyrgyzstan.svg...yrgyzstan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Flag_of_Pakistan.svg/2..._Pakistan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Flag_of_Tajikistan.svg...ajikistan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Flag_of_Uzbekistan.svg...zbekistan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Flag_of_Mongolia.svg/2..._Mongolia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Flag_of_Armenia.svg/23...f_Armenia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Flag_of_Azerbaijan.svg...zerbaijan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Flag_of_Bahrain.svg/23...f_Bahrain.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Flag_of_Cambodia.svg/2..._Cambodia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Flag_of_Kuwait.svg/23p...of_Kuwait.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Flag_of_Maldives.svg/2..._Maldives.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Flag_of_Myanmar.svg/23...f_Myanmar.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Flag_of_Nepal.svg/12px..._of_Nepal.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/65/Flag_of_Qatar.svg/23px..._of_Qatar.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Flag_of_Saudi_Arabia.s...di_Arabia.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Flag_of_Sri_Lanka.svg/...Sri_Lanka.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Flag_of_Turkey.svg/23p...of_Turkey.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Flag_of_Turkmenistan.s...kmenistan.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Flag_of_Algeria.svg/23...f_Algeria.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Flag_of_Bangladesh.svg...angladesh.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Flag_of_Iraq.svg/23px-Flag_of_Iraq.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Flag_of_Israel.svg/21p...of_Israel.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Flag_of_Laos.svg/23px-Flag_of_Laos.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Flag_of_Syria.svg/23px..._of_Syria.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Asia_%28orthographic_p...ection%29.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/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/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e
  • https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/lin...r-progressive.svg
  • https://upload.wikimedia.org/wikipedia/commons/4/4d/Icon_pdf_file.png
  • https://upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg
  • https://upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg
  • https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg
  • https://upload.wikimedia.org/wikipedia/commons/4/4c/Wikisource-logo.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://upload.wikimedia.org/wikipedia/commons/thumb/5/55/WMA_button2b.png/17px-WMA_button2b.png
  • 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://upload.wikimedia.org/wikipedia/commons/b/b5/Button_resize.png
  • https://upload.wikimedia.org/wikipedia/commons/d/d4/Button_hide.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://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?wikiid=enwiki&type=script
  • https://en.wikipedia.org/beacon/impression...beacon/impression
  • https://en.wikipedia.org/static/favicon/wikipedia.ico
  • https://en.wikipedia.org/static/favicon/wikipedia.ico
  • https://en.wikipedia.org/api/rest_v1/page/summary/India_(disambiguation)
  • 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/India
  • 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/India
  • Page info

    Page info
    TitleIndia - Wikipedia
    GeneratorMediaWiki 1.44.0-wmf.3
    Width1904
    Height50182
    DOM elements17781
    Avg DOM depth15
    Max DOM depth34
    Iframes0
    Script tags6
    Local storage1.0 MB
    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
    Apache Traffic Server 9.2.5100  Web servers
    HSTS 100  Security
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Interaction To Next Paint | Long Aninimation Frames | Visual Elements | Metrics from CDP | Server timings | 

    Visual Metrics

    Visual Metrics
    First Visual Change1.366 s
    Speed Index3.172 s
    Largest Image11.466 s
    Heading11.433 s
    LargestContentfulPaint11.466 s
    Last Meaningful Paint11.466 s
    Largest Contentful Paint11.466 s
    Visual Complete 85%10.800 s
    Visual Complete 95%11.833 s
    Visual Complete 99%13.400 s
    Last Visual Change14.733 s
    Visual Readiness13.367 s

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)507 ms
    First Contentful Paint (FCP)1.361 s
    Largest Contentful Paint (LCP)1.361 s
    Cumulative Layout Shift (CLS)0.16
    Interaction to next paint (INP)112 ms
    Total Blocking Time (TBT)668 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP14066
    Time spent in recalculate style before FCP212.841 ms
    Extra timings
    TTFB507 ms
    First Paint1.361 s
    Load Event End3.182 s
    Fully loaded11.125 s
    User Timing marks
    mwStartup1.389 s
    mwCentralNoticeBanner2.915 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.361 s
    Elements that needed recalculate style before LCP14066
    Time spent in recalculate style before LCP212.841 ms
    Load time0 ms
    Size (width*height)282048
    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.15750 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.02500<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>,<div class="ib-country-map-caption"></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),body > div:eq(2) > div > div:eq(2) > main#content > div#bodyContent > div#mw-content-text > div:eq(0) > table:eq(0) > tbody > tr:eq(5) > td > div
    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.01575<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.01465<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.01203<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.00888<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>,<img alt="Image of a globe centred on India, with India highlighted." src="//upload.wikimedia.org/wikipedia/commons/thumb/b/bb/India_%28orthographic_projection%29.svg/250px-India_%28orthographic_projection%29.svg.png" decoding="async" width="250" height="250" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/bb/India_%28orthographic_projection%29.svg/375px-India_%28orthographic_projection%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/bb/India_%28orthographic_projection%29.svg/500px-India_%28orthographic_projection%29.svg.png 2x" data-file-width="541" data-file-height="541">
    body > div#wmde-banner-app,body > div:eq(1) > header,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(0) > tbody > tr:eq(5) > td > span > a > img
    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.00720<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.00386<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.00376<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.00282<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.00235<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.00235<div id="wmde-banner-app" data-v-app=""></div>,<header class="vector-header mw-header"></header>,<div class="mw-page-container"></div>,<span class="mw-tmh-duration mw-tmh-label"></span>
    body > div#wmde-banner-app,body > div:eq(1) > header,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(0) > tbody > tr:eq(4) > td > div > span > span > span > span
    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.00189<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.00152<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)
    Layout shift

    The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.

    Interaction to Next Paint

    Interaction to Next Paint (INP) is a metric that try to measure responsiveness. It's useful if you are testing user journeys. Read more about Interaction to Next Paint.

    The measured latency was 112 ms.

    Event typemouseover
    Element typeA
    Element class name
    Event target#mw-content-text>div.mw-content-ltr.mw-parser-output>p>a
    Load state when the event happenedcomplete

    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
    404 ms359.8 ms431.2 ms0 ms431.2 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    379 ms422.3 ms6.7 ms2.5 ms4.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.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.gallery%2Cmedia%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=k11vl

    Forced Style And Layout Duration: 315 ms

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    190 ms238.4 ms1.6 ms0.1 ms1.5 ms

    Forced Style And Layout Duration: 234 ms

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    138 ms140.4 ms96.6 ms92.4 ms4.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: 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.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.gallery%2Cmedia%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=k11vl

    Forced Style And Layout Duration: 3 ms

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

    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.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.gallery%2Cmedia%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=k11vl

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

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

    Forced Style And Layout Duration: 8 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
    24 ms5 ms71 ms0 ms71 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    17 ms112.6 ms28.4 ms24.4 ms4 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.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.gallery%2Cmedia%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=k11vl

    Forced Style And Layout Duration: 28 ms

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

    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.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.gallery%2Cmedia%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=k11vl

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    12 ms41.3 ms24.7 ms12.4 ms12.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 ms48.9 ms29.1 ms23.8 ms5.3 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms23 ms27 ms11 ms16 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.

    CDP Performance

    namevalue
    AudioHandlers0
    AudioWorkletProcessors0
    Documents26
    Frames25
    JSEventListeners2921
    LayoutObjects26638
    MediaKeySessions0
    MediaKeys0
    Nodes36079
    Resources153
    ContextLifecycleStateObservers39
    V8PerContextDatas1
    WorkerGlobalScopes0
    UACSSResources8
    RTCPeerConnections0
    ResourceFetchers26
    AdSubframes0
    DetachedScriptStates0
    ArrayBufferContents0
    LayoutCount239
    RecalcStyleCount278
    LayoutDuration464
    RecalcStyleDuration911
    DevToolsCommandDuration74
    ScriptDuration455
    V8CompileDuration10
    TaskDuration3396
    TaskOtherDuration1482
    ThreadTime5
    ProcessTime8
    JSHeapUsedSize9125768
    JSHeapTotalSize10838016
    FirstMeaningfulPaint1361

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (125px-Flag_of_India.svg.png)11.466 s 1145 687 127 85
    <img alt="Horizontal tricolour flag bearing, from top to bottom, deep saffron, white, and green horizontal bands. In the centre of the white band is a navy-blue wheel with 24 spokes." src="//upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/125px-Flag_of_India.svg.png" decoding="async" width="125" height="83" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/188px-Flag_of_India.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/250px-Flag_of_India.svg.png 2x" data-file-width="900" data-file-height="600">
    Heading11.433 s 478 445 787 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint11.466 s 478 800 948 461
    <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 requests144
    Total domains4
    Total transfer size1.7 MB
    Total content size4.1 MB
    Responses missing compression15
    Number of cookies2
    Third party cookies0
    Requests per response code
    200142
    2041
    3021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b250.2 KB1.3 MB1
    css0 b27.0 KB194.7 KB2
    javascript0 b445.1 KB1.6 MB9
    image0 b1007.1 KB907.3 KB115
    svg0 b24.9 KB36.5 KB13
    plain0 b546 B0 b1
    favicon0 b1.7 KB2.7 KB1
    json0 b1.9 KB1.3 KB1
    Total0 b1.7 MB4.1 MB143

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    en.wikipedia.org5.799 s680.7 KB2.9 MB26
    upload.wikimedia.org122.454 s994.4 KB905.0 KB116
    meta.wikimedia.org285 ms82.2 KB321.4 KB1
    login.wikimedia.org116 ms1.2 KB252 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 year
    Last modified2 minutes23 weeks11 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/India - 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.
    WARNING https://en.wikipedia.org/wiki/India - 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
    javascript0 b0
    image0 b0
    font0 b0
    favicon1.7 KB1
    json1.9 KB1
    Total3.7 KB2

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript185.2 KB5
    image12.6 KB4
    font0 b0
    plain546 B1
    favicon1.7 KB1
    json1.9 KB1
    Total202.0 KB13

    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 668
    Max Potential First Input Delay 422
    Long Tasks before First Paint1431
    Long Tasks before First Contentful Paint1431
    Long Tasks before Largest Contentful Paint1431
    Long Tasks after Load Event End1238
    Total Long Tasks61349

    CPU last long task happened at 10.419 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown871431window
    self203590window
    self213097window
    unknown242271window
    self2752422window
    self10419238window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML95
    styleLayout1376
    paintCompositeRender265
    scriptParseCompile10
    scriptEvaluation466
    garbageCollection12
    other1059
    Events (ms)
    UpdateLayoutTree909
    PrePaint507
    Layout463
    RunTask339
    FunctionCall322
    Paint181
    Layerize116
    v8.run92
    ParseHTML88
    HitTest53
    RunMicrotasks31
    PaintImage23
    Commit22
    IntersectionObserverController::computeIntersections20
    DocumentLoader::BodyLoadingFinished15
    CpuProfiler::StartProfiling14

    Time spent per request

    URLCPU time (ms)
    https://meta.wikimedia.org/w/index.php?title=Special:BannerLoader&campaign=C24_WMDE_Desktop_EN_04&banner=B24_WMDE_Desktop_EN_04_ctrl&uselang=en&debug=false675
    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.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.gallery%2Cmedia%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=k11vl399
    https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022365
    afterPageCompleteCheck.jpg | layoutShift.jpg | largestContentfulPaint.jpg | 

    Screenshots

    afterPageCompleteCheck.jpg

    afterPageCompleteCheck.jpg

    layoutShift.jpg

    layoutShift.jpg

    largestContentfulPaint.jpg

    largestContentfulPaint.jpg