Page summary

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

Tested 2025-01-18 00:05:17 using Chrome 131.0.6778.85 (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.5 MB
Requests97
Timing metrics
TTFB [median]507 ms
First Paint [median]1.102 s
Fully Loaded [median]2.469 s
Google Web Vitals
TTFB [median]507 ms
First Contentful Paint (FCP) [median]1.102 s
Largest Contentful Paint (LCP) [median]1.102 s
Cumulative Layout Shift (CLS) [median]0.03
Total Blocking Time [median]3 ms
Max Potential FID [median]53 ms
CPU metrics
CPU long tasks [median]2
CPU longest task duration284 ms
CPU last long task happens at1.880 s
Visual Metrics
First Visual Change [median]1.100 s
Speed Index [median]1.432 s
Visual Complete 85% [median]1.100 s
Visual Complete 99% [median]12.466 s
Last Visual Change [median]12.600 s
Screenshot of run 4

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange1.066 s1.100 s1.120 s1.200 s
LastVisualChange12.266 s12.600 s12.540 s12.666 s
SpeedIndex1.393 s1.432 s1.472 s1.620 s
LargestImage1.566 s2.033 s1.960 s2.133 s
Heading1.566 s2.033 s1.960 s2.133 s
LargestContentfulPaint1.566 s2.033 s1.960 s2.133 s
LastMeaningfulPaint1.566 s2.033 s1.960 s2.133 s
VisualReadiness11.133 s11.533 s11.420 s11.566 s
VisualComplete851.066 s1.100 s1.120 s1.200 s
VisualComplete951.100 s1.233 s1.286 s1.533 s
VisualComplete999.533 s12.466 s11.840 s12.600 s
Google Web Vitals
Time To First Byte (TTFB)489 ms507 ms524 ms613 ms
Largest Contentful Paint (LCP)1.053 s1.102 s1.116 s1.214 s
First Contentful Paint (FCP)1.053 s1.102 s1.116 s1.214 s
Cumulative Layout Shift (CLS)0.03340.03340.03340.0335
More metrics
firstPaint1.053 s1.102 s1.116 s1.214 s
loadEventEnd2.250 s2.359 s2.357 s2.468 s
User Timing
mwStartup730 ms1.041 s997 ms1.151 s
CPU
Total Blocking Time0 ms3 ms4 ms10 ms
Max Potential FID0 ms53 ms44 ms60 ms
CPU long tasks 1223
CPU last long task happens at735 ms1.880 s1.576 s2.012 s
| Waterfall | | Download HAR | 

Waterfall

Run 4 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.8 sCPU Long Task duration 271 ms
1.1 smwStartup 1.020 sDOM Content Loaded Time 1.031 sFirst Contentful Paint 1.053 sLCP <P> 1.053 sFirst Visual Change 1.066 sVisual Complete 85% 1.066 sVisual Complete 95% 1.100 s
1.2 s
1.6 s
1.7 sCPU Long Task duration 50 ms
1.8 sLayout Shift 0.00000 1.733 s
1.9 sCPU Long Task duration 50 ms
2 sLayout Shift 0.03330 1.961 sLargest Image 2.000 sHeading 2.000 s
2.1 s
2.2 s
2.4 sLayout Shift 0.00012 2.334 sPage Load Time 2.339 s
2.5 sFully Loaded 2.444 s
9.4 s
9.5 s
9.7 s
12 s
12.1 s
12.2 s
12.3 s
12.4 s
12.5 sVisual Complete 99% 12.466 s
12.6 sLast Visual Change 12.600 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 (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 344 ms. The total blocking time is 10 ms and 1 long task before first contentful paint with total time of 284 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 75 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 994.1 kB the next access.0
    Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.
    Offenders:
  • https://upload.wikimedia.org/wikipedia/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://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/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 967.5 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 395.7 kB and the uncompressed size is 1.5 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.5 KB58.5 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 282.4 KB1.1 MB
    https://vi.wikipedia.org/w/load.php...ia.org/w/load.php 25.3 KB119.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 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.8 kB (23840) 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 23.3 KB184.0 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://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://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 18 responses that sets both a max-age and expires header. There are 97 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://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://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn...gin/checkLoggedIn
  • 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.11
    Width1904
    Height25048
    DOM elements6090
    Avg DOM depth14
    Max DOM depth23
    Iframes0
    Script tags5
    Local storage989.0 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 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.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 4

    Visual Metrics

    Visual Metrics
    First Visual Change1.066 s
    Speed Index1.432 s
    Largest Image2.000 s
    Heading2.000 s
    LargestContentfulPaint2.000 s
    Last Meaningful Paint2.000 s
    Largest Contentful Paint2.000 s
    Visual Complete 85%1.066 s
    Visual Complete 95%1.100 s
    Visual Complete 99%12.466 s
    Last Visual Change12.600 s
    Visual Readiness11.534 s

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)489 ms
    First Contentful Paint (FCP)1.053 s
    Largest Contentful Paint (LCP)1.053 s
    Cumulative Layout Shift (CLS)0.03
    Total Blocking Time (TBT)0 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP5572
    Time spent in recalculate style before FCP75.242 ms
    Extra timings
    TTFB489 ms
    First Paint1.053 s
    Load Event End2.339 s
    Fully loaded2.444 s
    User Timing marks
    mwStartup1.020 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.053 s
    Elements that needed recalculate style before LCP5572
    Time spent in recalculate style before LCP75.242 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.03342 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.00012<td style="vertical-align: top;"></td>
    body > div:eq(1) > div > div:eq(0) > div#siteNotice > table#asn-dismissable-notice > tr > td:eq(1)
    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
    229 ms225.6 ms270.4 ms0 ms270.4 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    46 ms49.9 ms50.1 ms46 ms4.1 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
    3 ms10.4 ms49.6 ms29.5 ms20.1 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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms10.3 ms39.7 ms35.6 ms4.1 ms
    https://vi.wikipedia.org/w/load.php?lang=vi&modules=startup&only=scripts&raw=1&skin=vector-2022

    Forced Style And Layout Duration: 4 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 ms82.6 ms1.4 ms0.7 ms0.7 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=1x620

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

    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=1x620

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

    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=1x620

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

    Server timings

    namedurationdescription
    cache0hit-front
    host0cp3067

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    Visual Elements

    NameDisplay TimeX YWidthHeight
    LargestImage (220px-Vincent_van_Gogh_-_Self-Portrait_-_Google_Art_Project_%28454045%29.jpg)2.000 s 1161 406 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.000 s 478 180 792 40
    <h1 id="firstHeading" class="firstHeading mw-first-heading"></h1>
    LargestContentfulPaint2.000 s 478 634 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 requests97
    Total domains4
    Total transfer size1.5 MB
    Total content size3.2 MB
    Responses missing compression14
    Number of cookies2
    Third party cookies0
    Requests per response code
    20096
    3021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b107.3 KB567.1 KB1
    css0 b27.4 KB191.9 KB3
    javascript0 b386.4 KB1.5 MB8
    image0 b979.2 KB916.6 KB73
    svg0 b17.6 KB28.2 KB9
    json0 b4.2 KB15.0 KB1
    favicon0 b1.7 KB2.7 KB1
    Total0 b1.5 MB3.2 MB96

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    vi.wikipedia.org5.811 s553.1 KB2.3 MB23
    upload.wikimedia.org71.289 s958.0 KB897.3 KB72
    meta.wikimedia.org115 ms11.6 KB26.9 KB1
    login.wikimedia.org314 ms1.2 KB252 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires-4 weeks0 seconds1 year
    Last modified3 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
    javascript40.8 KB4
    image14.9 KB5
    font0 b0
    json4.2 KB1
    favicon1.7 KB1
    Total61.6 KB12

    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 0
    Max Potential First Input Delay 50
    Long Tasks before First Paint1271
    Long Tasks before First Contentful Paint1271
    Long Tasks before Largest Contentful Paint1271
    Long Tasks after Load Event End00
    Total Long Tasks3371

    CPU last long task happened at 1.880 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown718271window
    self163650window
    self188050window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML39
    styleLayout459
    paintCompositeRender80
    scriptParseCompile3
    scriptEvaluation279
    garbageCollection13
    other414
    Events (ms)
    Layout297
    FunctionCall229
    RunTask189
    UpdateLayoutTree161
    PrePaint147
    Paint72
    ParseHTML33
    Layerize29
    v8.run17
    RunMicrotasks14
    CpuProfiler::StartProfiling13

    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=1x620141
    https://meta.wikimedia.org/w/index.php?title=MediaWiki:Wikiminiatlas.js&action=raw&ctype=text/javascript11