Page summary

https://vi.wikipedia.org/wiki/Vincent_van_Gogh

Tested 2025-02-20 16:10:37 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 Score75
Total Page Transfer Size1.6 MB
Requests111
Timing metrics
TTFB [median]508 ms
First Paint [median]1.076 s
Fully Loaded [median]2.635 s
Google Web Vitals
TTFB [median]508 ms
First Contentful Paint (FCP) [median]1.076 s
Largest Contentful Paint (LCP) [median]1.076 s
Cumulative Layout Shift (CLS) [median]0.06
Total Blocking Time [median]4 ms
Max Potential FID [median]54 ms
CPU metrics
CPU long tasks [median]2
CPU longest task duration264 ms
CPU last long task happens at1.786 s
Visual Metrics
First Visual Change [median]1.066 s
Speed Index [median]1.694 s
Visual Complete 85% [median]1.100 s
Visual Complete 99% [median]12.566 s
Last Visual Change [median]12.700 s
Screenshot of run 1

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange1.033 s1.066 s1.093 s1.200 s
LastVisualChange12.566 s12.700 s12.753 s13.033 s
SpeedIndex1.508 s1.694 s1.669 s1.754 s
LargestImage2.066 s2.166 s2.226 s2.666 s
Heading2.066 s2.166 s2.226 s2.666 s
LargestContentfulPaint2.066 s2.166 s2.226 s2.666 s
LastMeaningfulPaint2.066 s2.166 s2.226 s2.666 s
VisualReadiness11.533 s11.600 s11.660 s11.967 s
VisualComplete851.100 s1.100 s1.140 s1.200 s
VisualComplete952.466 s2.600 s3.966 s9.366 s
VisualComplete999.533 s12.566 s12.053 s13.033 s
Google Web Vitals
Time To First Byte (TTFB)489 ms508 ms537 ms609 ms
Largest Contentful Paint (LCP)1.036 s1.076 s1.103 s1.188 s
First Contentful Paint (FCP)1.036 s1.076 s1.103 s1.188 s
Cumulative Layout Shift (CLS)0.06050.06080.0610.0616
More metrics
firstPaint1.036 s1.076 s1.103 s1.188 s
loadEventEnd2.452 s2.531 s2.564 s2.796 s
User Timing
mwStartup713 ms1.019 s992 ms1.131 s
mwCentralNoticeBanner2.000 s2.100 s2.158 s2.586 s
CPU
Total Blocking Time0 ms4 ms10 ms26 ms
Max Potential FID0 ms54 ms36 ms66 ms
CPU long tasks 1223
CPU last long task happens at731 ms1.786 s1.524 s2.392 s
| Waterfall | | Download HAR | 

Waterfall

Run 1 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.8 smwStartup 713 msCPU Long Task duration 255 ms
1.1 sDOM Content Loaded Time 1.033 sFirst Visual Change 1.066 sFirst Contentful Paint 1.072 sLCP <P> 1.072 sVisual Complete 85% 1.100 s
1.2 s
1.3 s
2.1 s
2.4 sCPU Long Task duration 54 ms
2.5 sLayout Shift 0.00000 2.445 s
2.6 sLayout Shift 0.03330 2.537 smwCentralNoticeBanner 2.586 s
2.7 sLayout Shift 0.02723 2.613 sLargest Image 2.666 sHeading 2.666 s
2.8 sPage Load Time 2.796 s
2.9 sVisual Complete 95% 2.833 s
3 sFully Loaded 2.909 s
3.1 s
3.2 s
9.4 s
9.5 s
9.6 s
9.7 s
12.7 s
12.8 s
12.9 s
13 s
13.1 sLast Visual Change 13.033 sVisual Complete 99% 13.033 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 (75)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 3 blocking requests and 0 in body parser blocking (0 JavaScript and 3 CSS). There are 1 potentially render blocking requests. You need to verify if it is render blocking: https://vi.wikipedia.org/w/load.php?lang=vi&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://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • Don't scale images in the browser (avoidScalingImages)The page has 1 image 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.90
    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://vi.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-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 2 CPU long tasks with the total of 309 ms. The total blocking time is 4 ms and 1 long task before first contentful paint with total time of 255 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.60
    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
  • 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://vi.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 79 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/commons/thumb/9/95/1000_b%C3%A0i_c%C6%A1_...E1%BA%A3n.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Symbol_star_gold.svg/1...star_gold.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Vincent_van_Gogh_-_Sel..._%28454045%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Vincent_van_Gogh_signa...incent%29.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/13px-Speaker_Icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Vincent_van_Gogh_Janua...28restored%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Theo_van_Gogh_May_1878...28restored%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Famille_van_Gogh.JPG/2...ille_van_Gogh.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/VincentVanGoghFoto.jpg...ntVanGoghFoto.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Cuesmes_JPG001.jpg/220...uesmes_JPG001.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Vincent_Willem_van_Gog..._van_Gogh_016.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Vincent_Van_Gogh_-_The...Potato_Eaters.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Paris_rue_lepic_54.jpg..._rue_lepic_54.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Vincent_Willem_van_Gog...t_%28Yorck%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/VanGogh-starry_night.j...-starry_night.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Toulouse-Lautrec_de_He..._van_Gogh_Sun.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Vincent_van_Gogh_-_Sta...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Jean-Fran%C3%A7ois_Mil..._%28II%29_013.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Tsunami_by_hokusai_19t..._19th_century.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Vincent_Willem_van_Gog..._van_Gogh_098.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Vincent_Willem_van_Gog..._van_Gogh_059.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Van_Gogh_-_Bildnis_der...C3%BCnstlers.jpeg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Vincent_van_Gogh_-_Eug...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Vincent_van_Gogh_-_Por...Joseph_Roulin.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vincent_Willem_van_Gog..._van_Gogh_084.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Vincent_van_Gogh_-_Sel...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Vincent_van_Gogh_-_Sel...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Van_Gogh_Self-Portrait...-Metropolitan.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Vincent_van_Gogh_-_Sel..._%28719161%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Vincent_Willem_van_Gog..._van_Gogh_102.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Vincent_Willem_van_Gog..._van_Gogh_127.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Vincent_Willem_van_Gog..._van_Gogh_128.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Irises-Vincent_van_Gog...cent_van_Gogh.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Vincent_van_Gogh_-_Alm...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Vincent_van_Gogh_-_Iri...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Van_Gogh_-_Vase_of_Ros...Vase_of_Roses.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Vincent_van_Gogh_-_Roa...2-15_May_1890.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Van_Gogh_The_Olive_Tre..._Olive_Trees..jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Van_Gogh_Starry_Night_...Night_Drawing.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Van_Gogh_-_Zypressen_m...chen_Figuren.jpeg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Vincent_van_Gogh_-_Whe...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Vincent_Van_Gogh_0016....Van_Gogh_0016.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Vincent_Willem_van_Gog..._van_Gogh_014.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Vincent_van_Gogh_-_De_...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Van_Gogh_-_Bl%C3%BChen...ssen_umgeben.jpeg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Vincent_Van_Gogh_0018....Van_Gogh_0018.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Vincent_van_Gogh_-_Whe...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Vincent_Willem_van_Gog..._van_Gogh_007.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Vincent_Willem_van_Gog...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Landscape_with_wheat_s...d_rising_moon.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Vincent_van_Gogh_-_Hou...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Vincent_van_Gogh_-_Whe...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Van_Gogh_-_Still_Life_...with_Absinthe.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Grave_of_Vincent_van_G...cent_van_Gogh.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Portrait_of_Dr._Gachet...of_Dr._Gachet.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Open_Access_logo_PLoS_...ansparent.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Wiktionary_small.svg/2...ary_small.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Commons-logo.svg/18px-Commons-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/25px...news-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/21p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/24...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/25p...ooks-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Wikiversity-logo-en.sv...y-logo-en.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/20px-Speaker_Icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Flag_of_the_Netherland...therlands.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/OOjs_UI_icon_edit-ltr-...ogressive.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Symbol_star_gold.svg/6...star_gold.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/6/6c/PDF_icon.svg
  • https://vi.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/f/f9/Closewindow14x14.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://upload.wikimedia.org/wikipedia/commons/thumb/5/55/WMA_button2b.png/17px-WMA_button2b.png
  • https://upload.wikimedia.org/wikipedia/commons/b/b5/Button_resize.png
  • https://upload.wikimedia.org/wikipedia/commons/d/d4/Button_hide.png
  • Long cache headers is good (cacheHeadersLong)The page has 5 requests that have a shorter cache time than 30 days (but still a cache time).95
    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://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php?lang=vi&modules=site.styles&only=styles&skin=vector-2022
  • https://vi.wikipedia.org/w/api.php...dia.org/w/api.php
  • Total image size shouldn't be too big (imageSize)The page total image size is 1.1 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 400 kB and the uncompressed size is 1.6 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://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022 19.6 KB58.7 KB
    https://vi.wikipedia.org/w/load.php...ia.org/w/load.php 26.5 KB83.4 KB
    https://vi.wikipedia.org/w/load.php...ia.org/w/load.php 17.2 KB58.2 KB
    https://vi.wikipedia.org/w/load.php...ia.org/w/load.php 284.5 KB1.1 MB
    https://vi.wikipedia.org/w/load.php...ia.org/w/load.php 25.0 KB115.1 KB
    https://vi.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://meta.wikimedia.org/w/index.php...a.org/w/index.php 11.6 KB26.9 KB
    https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn 1.2 KB252 B
    Make each CSS response small (optimalCssSize)https://vi.wikipedia.org/w/load.php?lang=vi&modules=ext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cmediawiki.page.gallery.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022 size is 23.5 kB (23485) 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://vi.wikipedia.org/w/load.php...ia.org/w/load.php 22.9 KB179.6 KB
    Don't use private headers on static content (privateAssets)The page has 5 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.60
    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://vi.wikipedia.org/wiki/Vincent_van_Gogh
  • https://vi.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • 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://vi.wikipedia...ia.org/w/load.php has a header sourcemap that is 1150 characters long. 99
    Description: Do not send response headers that are too long.
    Offenders:
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • Avoid unnecessary headers (unnecessaryHeaders)There are 28 responses that sets both a max-age and expires header. There are 111 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://vi.wikipedia.org/wiki/Vincent_van_Gogh
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php?lang=vi&modules=site.styles&only=styles&skin=vector-2022
  • https://vi.wikipedia.org/w/load.php?lang=vi&modules=site.styles&only=styles&skin=vector-2022
  • https://vi.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg
  • https://vi.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg
  • https://vi.wikipedia.org/static/images/icons/wikipedia.png
  • https://vi.wikipedia.org/static/images/icons/wikipedia.png
  • https://vi.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-vi.svg
  • https://vi.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-vi.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/1000_b%C3%A0i_c%C6%A1_...E1%BA%A3n.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Symbol_star_gold.svg/1...star_gold.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Vincent_van_Gogh_-_Sel..._%28454045%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Vincent_van_Gogh_signa...incent%29.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/13px-Speaker_Icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Vincent_van_Gogh_Janua...28restored%29.jpg
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arr...n-progressive.svg
  • https://vi.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e
  • https://vi.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/lin...r-progressive.svg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Theo_van_Gogh_May_1878...28restored%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/12/Famille_van_Gogh.JPG/2...ille_van_Gogh.JPG
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/74/VincentVanGoghFoto.jpg...ntVanGoghFoto.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Cuesmes_JPG001.jpg/220...uesmes_JPG001.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Vincent_Willem_van_Gog..._van_Gogh_016.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Vincent_Van_Gogh_-_The...Potato_Eaters.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Paris_rue_lepic_54.jpg..._rue_lepic_54.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Vincent_Willem_van_Gog...t_%28Yorck%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cd/VanGogh-starry_night.j...-starry_night.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Toulouse-Lautrec_de_He..._van_Gogh_Sun.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Vincent_van_Gogh_-_Sta...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Jean-Fran%C3%A7ois_Mil..._%28II%29_013.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Tsunami_by_hokusai_19t..._19th_century.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/cf/Vincent_Willem_van_Gog..._van_Gogh_098.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Vincent_Willem_van_Gog..._van_Gogh_059.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Van_Gogh_-_Bildnis_der...C3%BCnstlers.jpeg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Vincent_van_Gogh_-_Eug...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Vincent_van_Gogh_-_Por...Joseph_Roulin.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Vincent_Willem_van_Gog..._van_Gogh_084.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Vincent_van_Gogh_-_Sel...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Vincent_van_Gogh_-_Sel...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Van_Gogh_Self-Portrait...-Metropolitan.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Vincent_van_Gogh_-_Sel..._%28719161%29.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/Vincent_Willem_van_Gog..._van_Gogh_102.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Vincent_Willem_van_Gog..._van_Gogh_127.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Vincent_Willem_van_Gog..._van_Gogh_128.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Irises-Vincent_van_Gog...cent_van_Gogh.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Vincent_van_Gogh_-_Alm...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Vincent_van_Gogh_-_Iri...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Van_Gogh_-_Vase_of_Ros...Vase_of_Roses.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Vincent_van_Gogh_-_Roa...2-15_May_1890.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Van_Gogh_The_Olive_Tre..._Olive_Trees..jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Van_Gogh_Starry_Night_...Night_Drawing.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Van_Gogh_-_Zypressen_m...chen_Figuren.jpeg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Vincent_van_Gogh_-_Whe...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Vincent_Van_Gogh_0016....Van_Gogh_0016.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Vincent_Willem_van_Gog..._van_Gogh_014.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Vincent_van_Gogh_-_De_...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Van_Gogh_-_Bl%C3%BChen...ssen_umgeben.jpeg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Vincent_Van_Gogh_0018....Van_Gogh_0018.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/9/98/Vincent_van_Gogh_-_Whe...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Vincent_Willem_van_Gog..._van_Gogh_007.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Vincent_Willem_van_Gog...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Landscape_with_wheat_s...d_rising_moon.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Vincent_van_Gogh_-_Hou...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Vincent_van_Gogh_-_Whe...e_Art_Project.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Van_Gogh_-_Still_Life_...with_Absinthe.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Grave_of_Vincent_van_G...cent_van_Gogh.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Portrait_of_Dr._Gachet...of_Dr._Gachet.jpg
  • https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Open_Access_logo_PLoS_...ansparent.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Wiktionary_small.svg/2...ary_small.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Commons-logo.svg/18px-Commons-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/25px...news-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/21p...uote-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/24...urce-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/25p...ooks-logo.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Wikiversity-logo-en.sv...y-logo-en.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/20px-Speaker_Icon.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Flag_of_the_Netherland...therlands.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/OOjs_UI_icon_edit-ltr-...ogressive.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/Symbol_star_gold.svg/6...star_gold.svg.png
  • https://upload.wikimedia.org/wikipedia/commons/6/6c/PDF_icon.svg
  • https://vi.wikipedia.org/static/images/project-logos/viwiki.png
  • https://vi.wikipedia.org/static/images/project-logos/viwiki.png
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=script
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://vi.wikipedia.org/w/api.php...dia.org/w/api.php
  • https://vi.wikipedia.org/w/api.php...dia.org/w/api.php
  • https://upload.wikimedia.org/wikipedia/commons/f/f9/Closewindow14x14.png
  • https://meta.wikimedia.org/w/index.php...a.org/w/index.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.php
  • https://vi.wikipedia.org/w/load.php...ia.org/w/load.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://upload.wikimedia.org/wikipedia/commons/thumb/5/55/WMA_button2b.png/17px-WMA_button2b.png
  • https://upload.wikimedia.org/wikipedia/commons/b/b5/Button_resize.png
  • https://upload.wikimedia.org/wikipedia/commons/d/d4/Button_hide.png
  • https://vi.wikipedia.org/static/favicon/wikipedia.ico
  • https://vi.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://vi.wikipedia.org/wiki/Vincent_van_Gogh
  • 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://vi.wikipedia.org/wiki/Vincent_van_Gogh
  • Page info

    Page info
    TitleVincent van Gogh – Wikipedia tiếng Việt
    GeneratorMediaWiki 1.44.0-wmf.15
    Width1904
    Height25121
    DOM elements6151
    Avg DOM depth14
    Max DOM depth23
    Iframes0
    Script tags5
    Local storage1005.9 KB
    Session storage0 b
    Network Information API3g
    Resource Hints
    dns-prefetch
    https://meta.wikimedia.org/
    https://vi.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 1

    Visual Metrics

    Visual Metrics
    First Visual Change1.066 s
    Speed Index1.694 s
    Largest Image2.666 s
    Heading2.666 s
    LargestContentfulPaint2.666 s
    Last Meaningful Paint2.666 s
    Largest Contentful Paint2.666 s
    Visual Complete 85%1.100 s
    Visual Complete 95%2.833 s
    Visual Complete 99%13.033 s
    Last Visual Change13.033 s
    Visual Readiness11.967 s

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)489 ms
    First Contentful Paint (FCP)1.072 s
    Largest Contentful Paint (LCP)1.072 s
    Cumulative Layout Shift (CLS)0.06
    Total Blocking Time (TBT)4 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP5573
    Time spent in recalculate style before FCP68.198 ms
    Extra timings
    TTFB489 ms
    First Paint1.072 s
    Load Event End2.796 s
    Fully loaded2.909 s
    User Timing marks
    mwStartup713 ms
    mwCentralNoticeBanner2.586 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.072 s
    Element render delay583 ms
    TTFB489 ms
    Resource delay0 ms
    Resource load duration0 ms
    Elements that needed recalculate style before LCP5573
    Time spent in recalculate style before LCP68.198 ms
    Load time0 ms
    Size (width*height)233250
    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.06053 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.03330<div class="vector-column-start"></div>,<div class="mw-content-container"></div>
    body > div:eq(1) > div > div:eq(1),body > div:eq(1) > div > div:eq(2)
    0.02723<table id="asn-dismissable-notice" width="100%" style="background: transparent;"></table>,<div class="vector-column-start"></div>,<div class="mw-content-container"></div>
    body > div:eq(1) > div > div:eq(0) > div#siteNotice > table#asn-dismissable-notice,body > div:eq(1) > div > div:eq(1),body > div:eq(1) > div > div:eq(2)
    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-Tiểu_sử > 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-Sự_nghiệp > 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-Phong_cách_và_tác_phẩm > 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-Di_sản_và_đánh_giá > 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-Tham_khảo > 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
    206.5 ms262.3 ms241.5 ms0.1 ms241.4 ms
    https://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022

    Invoker:  https://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    19.6 ms58.2 ms52.4 ms49.1 ms3.3 ms
    https://vi.wikipedia.org/w/load.php?lang=vi&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://vi.wikipedia.org/w/load.php?lang=vi&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.scribunto.logs%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%2Cui%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=nzuqr

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

    https://vi.wikipedia.org/w/load.php?lang=vi&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.scribunto.logs%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%2Cui%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=nzuqr

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

    https://vi.wikipedia.org/w/load.php?lang=vi&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.scribunto.logs%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%2Cui%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=nzuqr

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

    https://vi.wikipedia.org/w/load.php?lang=vi&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
    17 ms39.5 ms29.5 ms29.1 ms0.4 ms
    https://vi.wikipedia.org/w/load.php?lang=vi&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://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022

    Forced Style And Layout Duration: 7 ms

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms28.9 ms23.1 ms23 ms0.1 ms
    https://vi.wikipedia.org/w/load.php?lang=vi&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.scribunto.logs%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%2Cui%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=nzuqr

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms27.9 ms29.2 ms10.2 ms19 ms
    https://vi.wikipedia.org/w/load.php?lang=vi&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.scribunto.logs%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%2Cui%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=nzuqr

    Forced Style And Layout Duration: 10 ms

    Invoker:  XMLHttpRequest.onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: 361742

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms47 ms12.6 ms9.3 ms3.3 ms
    https://vi.wikipedia.org/w/load.php?lang=vi&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

    Server timings

    namedurationdescription
    cache0hit-local
    host0cp3067

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (220px-Vincent_van_Gogh_-_Self-Portrait_-_Google_Art_Project_%28454045%29.jpg)2.666 s 1161 479 220 278
    <img src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Vincent_van_Gogh_-_Self-Portrait_-_Google_Art_Project_%28454045%29.jpg/220px-Vincent_van_Gogh_-_Self-Portrait_-_Google_Art_Project_%28454045%29.jpg" decoding="async" width="220" height="278" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Vincent_van_Gogh_-_Self-Portrait_-_Google_Art_Project_%28454045%29.jpg/330px-Vincent_van_Gogh_-_Self-Portrait_-_Google_Art_Project_%28454045%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Vincent_van_Gogh_-_Self-Portrait_-_Google_Art_Project_%28454045%29.jpg/440px-Vincent_van_Gogh_-_Self-Portrait_-_Google_Art_Project_%28454045%29.jpg 2x" data-file-width="4747" data-file-height="6000">
    Heading2.666 s 478 253 792 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint2.666 s 478 707 948 384
    <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 requests111
    Total domains4
    Total transfer size1.6 MB
    Total content size3.3 MB
    Responses missing compression16
    Number of cookies3
    Third party cookies0
    Requests per response code
    200110
    3021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b108.7 KB574.1 KB1
    css0 b27.1 KB187.5 KB3
    javascript0 b390.6 KB1.5 MB9
    image0 b1.1 MB1013.0 KB75
    svg0 b35.1 KB48.0 KB20
    json0 b4.0 KB13.3 KB1
    favicon0 b1.7 KB2.7 KB1
    Total0 b1.6 MB3.3 MB110

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    vi.wikipedia.org6.313 s566.5 KB2.3 MB33
    upload.wikimedia.org58.599 s1.0 MB1010.1 KB75
    meta.wikimedia.org209 ms13.9 KB31.6 KB2
    login.wikimedia.org207 ms1.2 KB252 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires-8 weeks0 seconds1 year
    Last modified2 days2 years11 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
    javascript42.8 KB5
    image112.8 KB7
    font0 b0
    json4.0 KB1
    svg17.5 KB11
    favicon1.7 KB1
    Total178.9 KB26

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    301

    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 4
    Max Potential First Input Delay 54
    Long Tasks before First Paint1255
    Long Tasks before First Contentful Paint1255
    Long Tasks before Largest Contentful Paint1255
    Long Tasks after Load Event End00
    Total Long Tasks2309

    CPU last long task happened at 2.392 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown754255window
    self239254window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML88
    styleLayout474
    paintCompositeRender94
    scriptParseCompile3
    scriptEvaluation285
    garbageCollection5
    other444
    Events (ms)
    Layout290
    FunctionCall241
    RunTask216
    UpdateLayoutTree184
    PrePaint146
    Paint84
    ParseHTML57
    Layerize30
    HTMLDocumentParser::MaybeFetchQueuedPreloads29
    v8.run15
    RunMicrotasks12
    CpuProfiler::StartProfiling12

    Time spent per request

    URLCPU time (ms)
    https://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022239
    https://vi.wikipedia.org/w/load.php?lang=vi&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.scribunto.logs%7Cext.uls.common%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%2Cui%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=nzuqr154
    https://meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript11