Tested 2024-12-14 02:34:52 using Chrome 116.0.5845.140 (runtime settings).
Metric | Value |
---|---|
Page metrics | |
Performance Score | 97 |
Total Page Transfer Size | 752.6 KB |
Requests | 16 |
Timing metrics | |
TTFB [median] | 299 ms |
First Paint [median] | 442 ms |
Fully Loaded [median] | 485 ms |
Google Web Vitals | |
TTFB [median] | 299 ms |
First Contentful Paint (FCP) [median] | 442 ms |
Largest Contentful Paint (LCP) [median] | 458 ms |
Cumulative Layout Shift (CLS) [median] | 0.00 |
Visual Metrics | |
First Visual Change [median] | 434 ms |
Speed Index [median] | 444 ms |
Visual Complete 85% [median] | 467 ms |
Visual Complete 99% [median] | 467 ms |
Last Visual Change [median] | 467 ms |
Metric | min | median | mean | max |
---|---|---|---|---|
Visual Metrics | ||||
FirstVisualChange | 400 ms | 434 ms | 433 ms | 466 ms |
LastVisualChange | 467 ms | 467 ms | 500 ms | 566 ms |
SpeedIndex | 444 ms | 444 ms | 454 ms | 475 ms |
LargestImage | 467 ms | 467 ms | 500 ms | 566 ms |
LargestContentfulPaint | 467 ms | 467 ms | 500 ms | 566 ms |
LastMeaningfulPaint | 467 ms | 467 ms | 500 ms | 566 ms |
VisualReadiness | 33 ms | 67 ms | 67 ms | 100 ms |
VisualComplete85 | 466 ms | 467 ms | 467 ms | 467 ms |
VisualComplete95 | 467 ms | 467 ms | 500 ms | 566 ms |
VisualComplete99 | 467 ms | 467 ms | 500 ms | 566 ms |
Google Web Vitals | ||||
Time To First Byte (TTFB) | 285 ms | 299 ms | 296 ms | 304 ms |
Largest Contentful Paint (LCP) | 411 ms | 458 ms | 449 ms | 478 ms |
First Contentful Paint (FCP) | 411 ms | 442 ms | 432 ms | 442 ms |
Cumulative Layout Shift (CLS) | 0 | 0 | 0.0058 | 0.0173 |
More metrics | ||||
firstPaint | 411 ms | 442 ms | 432 ms | 442 ms |
loadEventEnd | 413 ms | 473 ms | 466 ms | 513 ms |
CPU | ||||
Total Blocking Time | 0 ms | 0 ms | 0 ms | 0 ms |
Max Potential FID | 0 ms | 0 ms | 0 ms | 0 ms |
CPU long tasks | 0 | 0 | 0 | 0 |
CPU last long task happens at | 0 ms | 0 ms | 0 ms | 0 ms |
Run 1 SpeedIndex median
Use--filmstrip.showAll
to show all filmstrips.
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.
Title | Advice | Score | ||||||
---|---|---|---|---|---|---|---|---|
Avoid slowing down the critical rendering path (avoidRenderBlocking) | The page has 5 blocking requests and 2 in body parser blocking (2 JavaScript and 5 CSS). | 80 | ||||||
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: | ||||||||
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 extra requests by setting cache headers (cacheHeaders) | The page has 1 request that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 177 B the next access. | 90 | ||||||
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: | ||||||||
Long cache headers is good (cacheHeadersLong) | The page has 9 requests that have a shorter cache time than 30 days (but still a cache time). | 91 | ||||||
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: | ||||||||
Make each CSS response small (optimalCssSize) | https://www.proantic.com/magazine/wp-includes/css/dist/block-library/A.style.min.css,qver=6.7.pagespeed.cf.-GTKN38myC.css size is 15.9 kB (15897) 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:
|
Title | Advice | Score |
---|---|---|
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: | ||
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: | ||
Do not share user data with third parties. (thirdPartyPrivacy) | The page has 31% requests that are 3rd party (5 requests with a size of 660 kB). The page do 3 hosting requests and uses 1 hosting tool. The page do 2 analytics requests and uses 1 analytics tool. | 69 |
Description: Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests. | ||
Offenders: |
Page info | |
---|---|
Title | Le Magazine de Proantic - Magazine d'art et expositions |
Generator | WordPress 6.7 |
Width | 1350 |
Height | 8943 |
DOM elements | 472 |
Avg DOM depth | 13 |
Max DOM depth | 18 |
Iframes | 0 |
Script tags | 6 |
Local storage | 0 b |
Session storage | 94 B |
Network Information API | 4g |
Resource Hints |
---|
dns-prefetch |
https://stats.wp.com/ |
https://v0.wordpress.com/ |
https://i0.wp.com/ |
Data collected using Wappalyzerversion 6.10.66.
Use --browsertime.firefox.includeResponseBodies html
or --browsertime.chrome.includeResponseBodies html
to help Wappalyser find more information about technologies used.
Technology | Confidence | Category |
---|---|---|
WordPress 6.7 | 100 | CMS Blogs |
MySQL | 100 | Databases |
PHP | 100 | Programming languages |
Nginx | 100 | Web servers Reverse proxies |
Google PageSpeed 1.13.35.2 | 100 | Caching Web server extensions Performance |
HTTP/3 | 100 | Miscellaneous |
Data collected using Third Party Web 0.24.0
Hosting |
---|
WordPress |
Analytics |
WordPress Site Stats |
Data from run 1
Visual Metrics | |
---|---|
First Visual Change | 434 ms |
Speed Index | 444 ms |
Largest Image | 467 ms |
LargestContentfulPaint | 467 ms |
Last Meaningful Paint | 467 ms |
Largest Contentful Paint | 467 ms |
Visual Complete 85% | 467 ms |
Visual Complete 95% | 467 ms |
Visual Complete 99% | 467 ms |
Last Visual Change | 467 ms |
Visual Readiness | 33 ms |
Navigation Timing | |
---|---|
backEndTime | 304 ms |
domContentLoadedTime | 452 ms |
domInteractiveTime | 451 ms |
domainLookupTime | 0 ms |
frontEndTime | 168 ms |
pageDownloadTime | 1 ms |
pageLoadTime | 473 ms |
redirectionTime | 0 ms |
serverConnectionTime | 15 ms |
serverResponseTime | 284 ms |
Google Web Vitals | |
---|---|
Time to first byte (TTFB) | 304 ms |
First Contentful Paint (FCP) | 442 ms |
Largest Contentful Paint (LCP) | 458 ms |
Cumulative Layout Shift (CLS) | 0.00 |
Total Blocking Time (TBT) | 0 ms |
First Contentful Paint info | |
---|---|
Elements that needed recalculate style before FCP | 554 |
Time spent in recalculate style before FCP | 13.863 ms |
Extra timings | |
---|---|
TTFB | 304 ms |
First Paint | 442 ms |
Load Event End | 473 ms |
Fully loaded | 485 ms |
When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.
Element type | IMG |
Element/tag | <img width="720" height="471" src="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?resize=720%2C471&ssl=1" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" itemprop="image" decoding="async" fetchpriority="high" data-attachment-id="17275" data-permalink="https://www.proantic.com/magazine/paire-de-porte-torcheres-retour-degypte/capture-decran-2024-12-07-104643/" data-orig-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=728%2C516&ssl=1" data-orig-size="728,516" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="https://www.proantic.com/galerie/uwe-dobler-interiors/" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=300%2C213&ssl=1" data-large-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=665%2C471&ssl=1"> |
Render time | 458 ms |
Elements that needed recalculate style before LCP | 557 |
Time spent in recalculate style before LCP | 14.149 ms |
Load time | 410 ms |
URL | https://i0.wp.com/ww...-12-07-104643.png |
Size (width*height) | 161772 |
DOM path | |
div#page > div:eq(1) > div > div > div#site-content > div > div:eq(0) > main#content > div:eq(0) > div#inner-content > article#entry-17270 > div:eq(2) > a > img> div#page > div:eq(1) > div > div > div#site-content > div > div:eq(0) > main#content > div:eq(0) > div#inner-content > article#entry-17270 > div:eq(2) > a > img> |
0.00001 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.
Score | HTML Element |
---|---|
0.00001 | <button class="searchsubmit" type="submit"></button> |
body > div#page > div:eq(1) > div > div > div#site-content > div > div:eq(1) > div > aside#search-4 > form > div > button |
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.
There are no Server Timings.
There are no custom configured scripts.
There are no custom extra metrics from scripting.
Name | Display Time | X | Y | Width | Height |
---|---|---|---|---|---|
LargestImage (Capture-decran-2024-12-07-104643.png?resize=720%2C471&ssl=1) | 467 ms | 170 | 386 | 663 | 434 |
<img width="720" height="471" src="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?resize=720%2C471&ssl=1" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" itemprop="image" decoding="async" fetchpriority="high" data-attachment-id="17275" data-permalink="https://www.proantic.com/magazine/paire-de-porte-torcheres-retour-degypte/capture-decran-2024-12-07-104643/" data-orig-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=728%2C516&ssl=1" data-orig-size="728,516" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="https://www.proantic.com/galerie/uwe-dobler-interiors/" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=300%2C213&ssl=1" data-large-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=665%2C471&ssl=1"> | |||||
LargestContentfulPaint (Capture-decran-2024-12-07-104643.png?resize=720%2C471&ssl=1) | 467 ms | 170 | 386 | 663 | 434 |
<img width="720" height="471" src="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?resize=720%2C471&ssl=1" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" itemprop="image" decoding="async" fetchpriority="high" data-attachment-id="17275" data-permalink="https://www.proantic.com/magazine/paire-de-porte-torcheres-retour-degypte/capture-decran-2024-12-07-104643/" data-orig-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=728%2C516&ssl=1" data-orig-size="728,516" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="https://www.proantic.com/galerie/uwe-dobler-interiors/" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=300%2C213&ssl=1" data-large-file="https://i0.wp.com/www.proantic.com/magazine/wp-content/uploads/2024/12/Capture-decran-2024-12-07-104643.png?fit=665%2C471&ssl=1"> |
How the page is built.
Summary | |
---|---|
HTTP version | HTTP/2.0 |
Total requests | 16 |
Total domains | 4 |
Total transfer size | 752.6 KB |
Total content size | 984.2 KB |
Responses missing compression | 9 |
Number of cookies | 0 |
Third party cookies | 0 |
Requests per response code | |
---|---|
200 | 16 |
URL | Type | Transfer Size | Content Size |
---|---|---|---|
https://i0.wp.com/ww...-12-07-110436.png | image | 237.6 KB | 236.9 KB |
https://i0.wp.com/ww...-12-07-104643.png | image | 207.0 KB | 206.4 KB |
https://i0.wp.com/ww...-12-07-115208.png | image | 196.8 KB | 196.2 KB |
https://www.proantic...antic_ico_256.png | image | 36.4 KB | 36.1 KB |
https://www.proantic...olsen-icons.woff2 | font | 18.9 KB | 18.6 KB |
https://www.proantic...cf.-GTKN38myC.css | css | 15.5 KB | 111.9 KB |
https://www.proantic.com/magazine/ | html | 13.0 KB | 72.0 KB |
https://www.proantic...cf.yHt3onmplW.css | css | 10.5 KB | 55.9 KB |
https://www.proantic...ji-release.min.js | javascript | 5.3 KB | 18.2 KB |
https://stats.wp.com/e-202450.js | javascript | 2.9 KB | 7.2 KB |
https://www.proantic...er-legacy.min.css | css | 2.8 KB | 11.0 KB |
https://www.proantic...cf.B48meyexaI.css | css | 1.5 KB | 6.2 KB |
https://www.proantic...iaelement.min.css | css | 1.4 KB | 4.1 KB |
https://www.proantic.com/favicon.ico | favicon | 1.4 KB | 1.1 KB |
https://www.proantic....jm.YPk7tHUcXX.js | javascript | 1.2 KB | 2.5 KB |
https://pixel.wp.com...ixel.wp.com/g.gif | image | 177 B | 50 B |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 13.0 KB | 72.0 KB | 1 |
css | 0 b | 31.8 KB | 189.0 KB | 5 |
javascript | 0 b | 9.4 KB | 27.9 KB | 3 |
image | 0 b | 678.0 KB | 675.6 KB | 5 |
font | 0 b | 18.9 KB | 18.6 KB | 1 |
favicon | 0 b | 1.4 KB | 1.1 KB | 1 |
Total | 0 b | 752.6 KB | 984.2 KB | 16 |
Domain | Total download time | Transfer Size | Content Size | Requests |
---|---|---|---|---|
www.proantic.com | 656 ms | 108.1 KB | 337.5 KB | 11 |
i0.wp.com | 137 ms | 641.4 KB | 639.5 KB | 3 |
stats.wp.com | 52 ms | 2.9 KB | 7.2 KB | 1 |
pixel.wp.com | 5 ms | 177 B | 50 B | 1 |
type | min | median | max |
---|---|---|---|
Expires | 0 seconds | 1 week | 2 years |
Last modified | 2 days | 12 weeks | 4 years |
Included requests done after load event end.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 0 b | 0 |
javascript | 0 b | 0 |
image | 0 b | 0 |
font | 0 b | 0 |
favicon | 1.4 KB | 1 |
Total | 1.4 KB | 1 |
Includes requests done after DOM content loaded.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 0 b | 0 |
javascript | 0 b | 0 |
image | 0 b | 0 |
font | 0 b | 0 |
favicon | 1.4 KB | 1 |
Total | 1.4 KB | 1 |
Render blocking information directly from Chrome.
Blocking | In body parser blocking | Potentially blocking |
---|---|---|
5 | 2 | 0 |
URL | Type |
---|---|
https://www.proantic...olsen-icons.woff2 | non_blocking |
https://www.proantic...cf.-GTKN38myC.css | blocking |
https://www.proantic...cf.yHt3onmplW.css | blocking |
https://www.proantic...ji-release.min.js | non_blocking |
https://stats.wp.com/e-202450.js | in_body_parser_blocking |
https://www.proantic...er-legacy.min.css | blocking |
https://www.proantic...cf.B48meyexaI.css | blocking |
https://www.proantic...iaelement.min.css | blocking |
https://www.proantic....jm.YPk7tHUcXX.js | in_body_parser_blocking |
Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.
Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.
No long tasks on the page!
Calculated using Tracium.
Categories (ms) | |
---|---|
parseHTML | 16 |
styleLayout | 41 |
paintCompositeRender | 2 |
scriptParseCompile | 1 |
scriptEvaluation | 25 |
garbageCollection | 0 |
other | 88 |
Events (ms) | |
---|---|
RunTask | 61 |
Layout | 27 |
v8.run | 19 |
Commit | 17 |
UpdateLayoutTree | 14 |
ParseAuthorStyleSheet | 10 |
URL | CPU time (ms) |
---|---|
https://www.proantic.com/magazine/ | 14 |
Tool/domain | Time (ms) |
---|---|
www.proantic.com | 13.8 |
Third party requests categorised by Third party web version 0.24.0.
Category | Requests |
---|---|
hosting | 3 |
analytics | 2 |
Category | Number of tools |
---|---|
hosting | 1 |
analytics | 1 |
hosting (3 requests) |
WordPress |
|
analytics (2 requests) |
WordPress Site Stats |
|
Calculated using .*proantic.* (use --firstParty
to configure).
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 13.0 KB | 72.0 KB | 1 |
css | 0 b | 31.8 KB | 189.0 KB | 5 |
javascript | 0 b | 6.5 KB | 20.7 KB | 2 |
image | 0 b | 36.4 KB | 36.1 KB | 1 |
font | 0 b | 18.9 KB | 18.6 KB | 1 |
favicon | 0 b | 1.4 KB | 1.1 KB | 1 |
Total | N/A | 108.1 KB | 337.5 KB | 11 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 0 b | 0 b | 0 |
css | 0 b | 0 b | 0 b | 0 |
javascript | 0 b | 2.9 KB | 7.2 KB | 1 |
image | 0 b | 641.6 KB | 639.5 KB | 4 |
font | 0 b | 0 b | 0 b | 0 |
Total | N/A | 644.5 KB | 646.7 KB | 5 |
Axe is an accessibility testing engine for websites and other HTML-based user interfaces. Tested using axe-core version 4.7.2. Read more about axe-core .
Median number of violations for all the runs. Check each individual run to see all the violations.
Type | Violations (median) |
---|---|
Critical | 0 |
Serious | 3 |
Moderate | 3 |
Minor | 0 |