Page summary

https://www.antiquites-en-france.com/

Tested 2026-02-07 02:39:36 using Chrome 132.0.6834.83 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Third party axe
| Summary | | Download Video | Download Timeline Log | Download HAR | 

Summary

MetricValue
Page metrics
Performance Score76
Total Page Transfer Size2.6 MB
Requests63
Timing metrics
TTFB [median]133 ms
First Paint [median]388 ms
Fully Loaded [median]791 ms
Google Web Vitals
TTFB [median]133 ms
First Contentful Paint (FCP) [median]388 ms
Largest Contentful Paint (LCP) [median]485 ms
Cumulative Layout Shift (CLS) [median]0.00
Interaction To Next Paint (INP) [median]176 ms
Total Blocking Time [median]37 ms
Max Potential FID [median]87 ms
CPU metrics
CPU long tasks [median]2
CPU longest task duration105 ms
CPU last long task happens at628 ms
Visual Metrics
First Visual Change [median]400 ms
Speed Index [median]490 ms
Visual Complete 85% [median]500 ms
Visual Complete 99% [median]566 ms
Last Visual Change [median]767 ms
Screenshot of run 1

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange366 ms400 ms411 ms467 ms
LastVisualChange566 ms767 ms700 ms767 ms
SpeedIndex436 ms490 ms474 ms495 ms
LargestImage466 ms500 ms500 ms534 ms
Heading433 ms500 ms478 ms500 ms
LargestContentfulPaint466 ms500 ms500 ms534 ms
LastMeaningfulPaint466 ms500 ms500 ms534 ms
VisualReadiness200 ms300 ms289 ms367 ms
VisualComplete85466 ms500 ms500 ms534 ms
VisualComplete95466 ms500 ms500 ms534 ms
VisualComplete99500 ms566 ms611 ms767 ms
Google Web Vitals
Time To First Byte (TTFB)89 ms133 ms130 ms169 ms
Largest Contentful Paint (LCP)428 ms485 ms469 ms495 ms
First Contentful Paint (FCP)353 ms388 ms409 ms485 ms
Cumulative Layout Shift (CLS)0.00280.00280.00290.0029
More metrics
firstPaint353 ms388 ms409 ms485 ms
loadEventEnd662 ms772 ms735 ms772 ms
CPU
Total Blocking Time37 ms37 ms43 ms55 ms
Max Potential FID86 ms87 ms93 ms105 ms
CPU long tasks 2222
CPU last long task happens at571 ms628 ms618 ms655 ms
| 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.4 sCPU Long Task duration 50 msDOM Content Loaded Time 339 msFirst Contentful Paint 388 msFirst Visual Change 400 ms
0.5 sLayout Shift 0.00292 417 msLCP <DIV> 495 msVisual Complete 85% 500 msVisual Complete 95% 500 msVisual Complete 99% 500 msLargest Image 500 msHeading 500 ms
0.7 sCPU Long Task duration 105 ms
0.8 sLast Visual Change 767 msPage Load Time 772 msFully Loaded 791 ms
| 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 (76)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 5 blocking requests and 0 in body parser blocking (4 JavaScript and 1 CSS).60
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://www.antiquites-en-france.com/js/jquery.min.js
  • https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js
  • https://www.antiquites-en-france.com/js/all-2.min.js
  • https://www.antiquites-en-france.com/galleria/galleriacustom.min.js
  • https://www.antiquites-en-france.com/galleria/galleriacustom.min.js
  • Don't scale images in the browser (avoidScalingImages)The page has 6 images that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.40
    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://www.antiquites-en-france.com/uploads/items/thumb_blank/72a0d541f6fd6fb31...802402cc52a85.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/3e28ba902bdc6452b...5671beb791f84.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/e82dd5084731d7557...4ab82fcb79c51.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/01c1b7081400e9f43...33668fe469f9a.jpg
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/f97ffc0aa826b5bfd...3fc647ac3b3ff.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/18/banner.jpg
  • Avoid using Google Tag Manager. (googleTagManager)The page is using Google Tag Manager, this is a performance risk since non-tech users can add JavaScript to your page.0
    Description: Google Tag Manager makes it possible for non tech users to add scripts to your page that will downgrade performance.
    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 155 ms. The total blocking time is 55 ms and 1 long task before first contentful paint with total time of 50 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:
  • self
  • self
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 2 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 21.1 kB the next access.80
    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://www.antiquites-en-france.com/uploads/items/thumb_blank/a991737c4e76499c3...24750e9b1dd4e.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/5629beac2604472dd...900583f3c6092.jpg
  • Long cache headers is good (cacheHeadersLong)The page has 57 requests that have a shorter cache time than 30 days (but still a cache time).43
    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://www.antiquites-en-france.com/css/all.min.css
  • https://www.antiquites-en-france.com/js/jquery.min.js
  • https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js
  • https://www.antiquites-en-france.com/js/all-2.min.js
  • https://www.antiquites-en-france.com/galleria/galleriacustom.min.js
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/0.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/72a0d541f6fd6fb31...802402cc52a85.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/3e28ba902bdc6452b...5671beb791f84.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/e82dd5084731d7557...4ab82fcb79c51.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/01c1b7081400e9f43...33668fe469f9a.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/f97ffc0aa826b5bfdd...3fc647ac3b3ff.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/3a5339e553b9695b14...a326ed1dde3d3.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/70a728e5342e35dd5f...ce916cd4e2a78.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/dd2e41e1154033f188...cef194e1863cb.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/a282149fb8db7b0fd3...b2d31355b49e2.jpg
  • https://www.antiquites-en-france.com/display/member/19635/19635?rand=1967509964
  • https://www.antiquites-en-france.com/uploads/magazine/18/banner.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/14/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/10/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/6/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/5/thumb.jpg
  • https://www.antiquites-en-france.com/displaydata/item_thumb_blank/a%3A18%3A%7Bi%...%3Bi%3A6240%3B%7D
  • https://www.antiquites-en-france.com/images/bg.png
  • https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.min.js
  • https://www.antiquites-en-france.com/images/bg-header.png
  • https://www.antiquites-en-france.com/images/logo.png
  • https://www.antiquites-en-france.com/images/menu-img.png
  • https://www.antiquites-en-france.com/images/connexion-border.png
  • https://www.antiquites-en-france.com/images/btn-submit-search.png
  • https://www.antiquites-en-france.com/images/texture-content-1.png
  • https://www.antiquites-en-france.com/images/content-button.png
  • https://www.antiquites-en-france.com/font/Artifika/Artifika-Regular.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-SemiboldItalic.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Regular.woff2
  • https://www.antiquites-en-france.com/images/flower-top-bot.png
  • https://www.antiquites-en-france.com/images/thumbnail-skew.png
  • https://www.antiquites-en-france.com/images/content-button-large.png
  • https://www.antiquites-en-france.com/images/flower-blue.png
  • https://www.antiquites-en-france.com/images/texture-newsletter.png
  • https://www.antiquites-en-france.com/images/social-links-fb.png
  • https://www.antiquites-en-france.com/images/social-links-twitter.png
  • https://www.antiquites-en-france.com/images/cavalier.png
  • https://www.antiquites-en-france.com/images/civilization.png
  • https://www.antiquites-en-france.com/images/footer-flower.png
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Semibold.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Light.woff2
  • https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.css
  • https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1
  • https://www.antiquites-en-france.com/css/bg.png
  • https://www.antiquites-en-france.com/css/right.png
  • https://www.antiquites-en-france.com/css/left.png
  • https://www.antiquites-en-france.com/css/fscreen.png
  • https://www.antiquites-en-france.com/css/playpause-white.png
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/3a5339e553b9695b1...a326ed1dde3d3.jpg
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/70a728e5342e35dd5...ce916cd4e2a78.jpg
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/f97ffc0aa826b5bfd...3fc647ac3b3ff.jpg
  • https://www.antiquites-en-france.com/favicon.png
  • Always compress text content (compressAssets)The page has 8 requests that are served uncompressed. You could save a lot of bytes by sending them compressed instead.20
    Description: In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith.
    Offenders:
    URLTransfer sizeContent size
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/a991737c4e76499c3...24750e9b1dd4e.jpg 10.3 KB10.3 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/5629beac2604472dd...900583f3c6092.jpg 10.3 KB10.3 KB
    https://www.antiquites-en-france.com/font/Artifika/Artifika-Regular.woff2 45.0 KB44.8 KB
    https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-SemiboldItalic.woff2 59.6 KB59.3 KB
    https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Regular.woff2 60.6 KB60.3 KB
    https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Semibold.woff2 62.5 KB62.2 KB
    https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Light.woff2 61.8 KB61.5 KB
    https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1 153.4 KB450.0 KB
    Total image size shouldn't be too big (imageSize)The page total image size is 2.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 289.8 kB and the uncompressed size is 889.1 kB. This is quite large. 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://www.antiquites-en-france.com/js/jquery.min.js 33.1 KB92.6 KB
    https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js 51.1 KB202.8 KB
    https://www.antiquites-en-france.com/js/all-2.min.js 2.4 KB6.1 KB
    https://www.antiquites-en-france.com/galleria/galleriacustom.min.js 20.3 KB61.5 KB
    https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.min.js 1.9 KB4.1 KB
    https://www.google-analytics.com/analytics.js 20.8 KB51.1 KB
    https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1 153.4 KB450.0 KB
    Make each CSS response small (optimalCssSize)https://www.antiquites-en-france.com/css/all.min.css size is 26.9 kB (26905) 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://www.antiquites-en-france.com/css/all.min.css 26.3 KB160.3 KB
    Total page size shouldn't be too big (pageSize)The page total transfer size is 2.7 MB, which is more than the coach limit of 2 MB. That is really big and you need to make it smaller.0
    Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth.
    Offenders:
    URLTransfer sizeContent size
    https://www.antiquites-en-france.com/ 6.6 KB28.7 KB
    https://www.antiquites-en-france.com/css/all.min.css 26.3 KB160.3 KB
    https://www.antiquites-en-france.com/js/jquery.min.js 33.1 KB92.6 KB
    https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js 51.1 KB202.8 KB
    https://www.antiquites-en-france.com/js/all-2.min.js 2.4 KB6.1 KB
    https://www.antiquites-en-france.com/galleria/galleriacustom.min.js 20.3 KB61.5 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/a991737c4e76499c3...24750e9b1dd4e.jpg 10.3 KB10.3 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/0.jpg 4.0 KB3.8 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/5629beac2604472dd...900583f3c6092.jpg 10.3 KB10.3 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/72a0d541f6fd6fb31...802402cc52a85.jpg 224.3 KB223.8 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/3e28ba902bdc6452b...5671beb791f84.jpg 255.0 KB254.5 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/e82dd5084731d7557...4ab82fcb79c51.jpg 180.4 KB180.0 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_blank/01c1b7081400e9f43...33668fe469f9a.jpg 61.6 KB61.3 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_mini/f97ffc0aa826b5bfdd...3fc647ac3b3ff.jpg 18.5 KB18.2 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_mini/3a5339e553b9695b14...a326ed1dde3d3.jpg 22.0 KB21.8 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_mini/70a728e5342e35dd5f...ce916cd4e2a78.jpg 26.1 KB25.9 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_mini/dd2e41e1154033f188...cef194e1863cb.jpg 24.9 KB24.6 KB
    https://www.antiquites-en-france.com/uploads/items/thumb_mini/a282149fb8db7b0fd3...b2d31355b49e2.jpg 22.1 KB21.9 KB
    https://www.antiquites-en-france.com/display/member/19635/19635?rand=1967509964 8.1 KB7.9 KB
    https://www.antiquites-en-france.com/uploads/magazine/18/banner.jpg 58.9 KB58.6 KB
    https://www.antiquites-en-france.com/uploads/magazine/14/thumb.jpg 11.2 KB10.9 KB
    https://www.antiquites-en-france.com/uploads/magazine/10/thumb.jpg 14.5 KB14.3 KB
    https://www.antiquites-en-france.com/uploads/magazine/6/thumb.jpg 21.4 KB21.1 KB
    https://www.antiquites-en-france.com/uploads/magazine/5/thumb.jpg 12.7 KB12.4 KB
    https://www.antiquites-en-france.com/displaydata/item_thumb_blank/a%3A18%3A%7Bi%...%3Bi%3A6240%3B%7D 200 B0 b
    https://www.antiquites-en-france.com/images/bg.png 28.9 KB28.6 KB
    https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.min.js 1.9 KB4.1 KB
    https://www.antiquites-en-france.com/images/bg-header.png 2.3 KB2.0 KB
    https://www.antiquites-en-france.com/images/logo.png 2.8 KB2.5 KB
    https://www.antiquites-en-france.com/images/menu-img.png 1.1 KB857 B
    https://www.antiquites-en-france.com/images/connexion-border.png 2.9 KB2.6 KB
    https://www.antiquites-en-france.com/images/btn-submit-search.png 1.3 KB1.0 KB
    https://www.antiquites-en-france.com/images/texture-content-1.png 6.9 KB6.7 KB
    https://www.antiquites-en-france.com/images/content-button.png 1.6 KB1.4 KB
    https://www.antiquites-en-france.com/font/Artifika/Artifika-Regular.woff2 45.0 KB44.8 KB
    https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-SemiboldItalic.woff2 59.6 KB59.3 KB
    https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Regular.woff2 60.6 KB60.3 KB
    https://www.google-analytics.com/analytics.js 20.8 KB51.1 KB
    https://www.antiquites-en-france.com/images/flower-top-bot.png 5.1 KB4.9 KB
    https://www.antiquites-en-france.com/images/thumbnail-skew.png 15.0 KB14.7 KB
    https://www.antiquites-en-france.com/images/content-button-large.png 1.9 KB1.7 KB
    https://www.antiquites-en-france.com/images/flower-blue.png 1.3 KB1.0 KB
    https://www.antiquites-en-france.com/images/texture-newsletter.png 7.5 KB7.3 KB
    https://www.antiquites-en-france.com/images/social-links-fb.png 4.2 KB4.0 KB
    https://www.antiquites-en-france.com/images/social-links-twitter.png 4.3 KB4.1 KB
    https://www.antiquites-en-france.com/images/cavalier.png 2.0 KB1.7 KB
    https://www.antiquites-en-france.com/images/civilization.png 3.1 KB2.9 KB
    https://www.antiquites-en-france.com/images/footer-flower.png 18.6 KB18.4 KB
    https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Semibold.woff2 62.5 KB62.2 KB
    https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Light.woff2 61.8 KB61.5 KB
    https://www.google-analytics.com/j/collect...ics.com/j/collect 473 B15 B
    https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.css 1.9 KB7.3 KB
    https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1 153.4 KB450.0 KB
    https://www.antiquites-en-france.com/css/bg.png 212 B0 b
    https://www.antiquites-en-france.com/css/right.png 442 B210 B
    https://www.antiquites-en-france.com/css/left.png 443 B211 B
    https://www.antiquites-en-france.com/css/fscreen.png 587 B355 B
    https://www.antiquites-en-france.com/css/playpause-white.png 481 B249 B
    https://www.antiquites-en-france.com/uploads/items/detail_maxi/3a5339e553b9695b1...a326ed1dde3d3.jpg 302.6 KB302.0 KB
    https://www.antiquites-en-france.com/uploads/items/detail_maxi/70a728e5342e35dd5...ce916cd4e2a78.jpg 428.0 KB427.3 KB
    https://www.antiquites-en-france.com/uploads/items/detail_maxi/f97ffc0aa826b5bfd...3fc647ac3b3ff.jpg 243.9 KB243.3 KB
    https://region1.google-analytics.com/g/collect...ics.com/g/collect N/A0 b
    https://www.antiquites-en-france.com/favicon.png 1.5 KB1.3 KB
    Don't use private headers on static content (privateAssets)The page has 1 request with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.90
    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://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1
  • Avoid missing and error requests (responseOk)The page has 2 error responses. The page has 2 responses with code 404. 80
    Description: Your page should never request assets that return a 400 or 500 error. These requests are never cached. If that happens something is broken. Please fix it.
    Offenders:
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/a991737c4e76499c3...24750e9b1dd4e.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/5629beac2604472dd...900583f3c6092.jpg
  • Best practice advice (98)

    TitleAdviceScore
    Avoid unnecessary headers (unnecessaryHeaders)There are 63 responses that sets both a max-age and expires header. There are 7 responses that sets a pragma no-cache header (that is a request header). There are 63 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://www.antiquites-en-france.com/
  • https://www.antiquites-en-france.com/
  • https://www.antiquites-en-france.com/
  • https://www.antiquites-en-france.com/css/all.min.css
  • https://www.antiquites-en-france.com/css/all.min.css
  • https://www.antiquites-en-france.com/js/jquery.min.js
  • https://www.antiquites-en-france.com/js/jquery.min.js
  • https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js
  • https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js
  • https://www.antiquites-en-france.com/js/all-2.min.js
  • https://www.antiquites-en-france.com/js/all-2.min.js
  • https://www.antiquites-en-france.com/galleria/galleriacustom.min.js
  • https://www.antiquites-en-france.com/galleria/galleriacustom.min.js
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/a991737c4e76499c3...24750e9b1dd4e.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/a991737c4e76499c3...24750e9b1dd4e.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/a991737c4e76499c3...24750e9b1dd4e.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/0.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/0.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/5629beac2604472dd...900583f3c6092.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/5629beac2604472dd...900583f3c6092.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/5629beac2604472dd...900583f3c6092.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/72a0d541f6fd6fb31...802402cc52a85.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/72a0d541f6fd6fb31...802402cc52a85.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/3e28ba902bdc6452b...5671beb791f84.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/3e28ba902bdc6452b...5671beb791f84.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/e82dd5084731d7557...4ab82fcb79c51.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/e82dd5084731d7557...4ab82fcb79c51.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/01c1b7081400e9f43...33668fe469f9a.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_blank/01c1b7081400e9f43...33668fe469f9a.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/f97ffc0aa826b5bfdd...3fc647ac3b3ff.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/f97ffc0aa826b5bfdd...3fc647ac3b3ff.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/3a5339e553b9695b14...a326ed1dde3d3.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/3a5339e553b9695b14...a326ed1dde3d3.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/70a728e5342e35dd5f...ce916cd4e2a78.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/70a728e5342e35dd5f...ce916cd4e2a78.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/dd2e41e1154033f188...cef194e1863cb.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/dd2e41e1154033f188...cef194e1863cb.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/a282149fb8db7b0fd3...b2d31355b49e2.jpg
  • https://www.antiquites-en-france.com/uploads/items/thumb_mini/a282149fb8db7b0fd3...b2d31355b49e2.jpg
  • https://www.antiquites-en-france.com/display/member/19635/19635?rand=1967509964
  • https://www.antiquites-en-france.com/display/member/19635/19635?rand=1967509964
  • https://www.antiquites-en-france.com/display/member/19635/19635?rand=1967509964
  • https://www.antiquites-en-france.com/uploads/magazine/18/banner.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/18/banner.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/14/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/14/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/10/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/10/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/6/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/6/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/5/thumb.jpg
  • https://www.antiquites-en-france.com/uploads/magazine/5/thumb.jpg
  • https://www.antiquites-en-france.com/displaydata/item_thumb_blank/a%3A18%3A%7Bi%...%3Bi%3A6240%3B%7D
  • https://www.antiquites-en-france.com/displaydata/item_thumb_blank/a%3A18%3A%7Bi%...%3Bi%3A6240%3B%7D
  • https://www.antiquites-en-france.com/displaydata/item_thumb_blank/a%3A18%3A%7Bi%...%3Bi%3A6240%3B%7D
  • https://www.antiquites-en-france.com/images/bg.png
  • https://www.antiquites-en-france.com/images/bg.png
  • https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.min.js
  • https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.min.js
  • https://www.antiquites-en-france.com/images/bg-header.png
  • https://www.antiquites-en-france.com/images/bg-header.png
  • https://www.antiquites-en-france.com/images/logo.png
  • https://www.antiquites-en-france.com/images/logo.png
  • https://www.antiquites-en-france.com/images/menu-img.png
  • https://www.antiquites-en-france.com/images/menu-img.png
  • https://www.antiquites-en-france.com/images/connexion-border.png
  • https://www.antiquites-en-france.com/images/connexion-border.png
  • https://www.antiquites-en-france.com/images/btn-submit-search.png
  • https://www.antiquites-en-france.com/images/btn-submit-search.png
  • https://www.antiquites-en-france.com/images/texture-content-1.png
  • https://www.antiquites-en-france.com/images/texture-content-1.png
  • https://www.antiquites-en-france.com/images/content-button.png
  • https://www.antiquites-en-france.com/images/content-button.png
  • https://www.antiquites-en-france.com/font/Artifika/Artifika-Regular.woff2
  • https://www.antiquites-en-france.com/font/Artifika/Artifika-Regular.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-SemiboldItalic.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-SemiboldItalic.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Regular.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Regular.woff2
  • https://www.google-analytics.com/analytics.js
  • https://www.google-analytics.com/analytics.js
  • https://www.antiquites-en-france.com/images/flower-top-bot.png
  • https://www.antiquites-en-france.com/images/flower-top-bot.png
  • https://www.antiquites-en-france.com/images/thumbnail-skew.png
  • https://www.antiquites-en-france.com/images/thumbnail-skew.png
  • https://www.antiquites-en-france.com/images/content-button-large.png
  • https://www.antiquites-en-france.com/images/content-button-large.png
  • https://www.antiquites-en-france.com/images/flower-blue.png
  • https://www.antiquites-en-france.com/images/flower-blue.png
  • https://www.antiquites-en-france.com/images/texture-newsletter.png
  • https://www.antiquites-en-france.com/images/texture-newsletter.png
  • https://www.antiquites-en-france.com/images/social-links-fb.png
  • https://www.antiquites-en-france.com/images/social-links-fb.png
  • https://www.antiquites-en-france.com/images/social-links-twitter.png
  • https://www.antiquites-en-france.com/images/social-links-twitter.png
  • https://www.antiquites-en-france.com/images/cavalier.png
  • https://www.antiquites-en-france.com/images/cavalier.png
  • https://www.antiquites-en-france.com/images/civilization.png
  • https://www.antiquites-en-france.com/images/civilization.png
  • https://www.antiquites-en-france.com/images/footer-flower.png
  • https://www.antiquites-en-france.com/images/footer-flower.png
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Semibold.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Semibold.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Light.woff2
  • https://www.antiquites-en-france.com/font/Open_Sans/OpenSans-Light.woff2
  • https://www.google-analytics.com/j/collect...ics.com/j/collect
  • https://www.google-analytics.com/j/collect...ics.com/j/collect
  • https://www.google-analytics.com/j/collect...ics.com/j/collect
  • https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.css
  • https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.css
  • https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1
  • https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1
  • https://www.antiquites-en-france.com/css/bg.png
  • https://www.antiquites-en-france.com/css/bg.png
  • https://www.antiquites-en-france.com/css/right.png
  • https://www.antiquites-en-france.com/css/right.png
  • https://www.antiquites-en-france.com/css/left.png
  • https://www.antiquites-en-france.com/css/left.png
  • https://www.antiquites-en-france.com/css/fscreen.png
  • https://www.antiquites-en-france.com/css/fscreen.png
  • https://www.antiquites-en-france.com/css/playpause-white.png
  • https://www.antiquites-en-france.com/css/playpause-white.png
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/3a5339e553b9695b1...a326ed1dde3d3.jpg
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/3a5339e553b9695b1...a326ed1dde3d3.jpg
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/70a728e5342e35dd5...ce916cd4e2a78.jpg
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/70a728e5342e35dd5...ce916cd4e2a78.jpg
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/f97ffc0aa826b5bfd...3fc647ac3b3ff.jpg
  • https://www.antiquites-en-france.com/uploads/items/detail_maxi/f97ffc0aa826b5bfd...3fc647ac3b3ff.jpg
  • https://region1.google-analytics.com/g/collect...ics.com/g/collect
  • https://region1.google-analytics.com/g/collect...ics.com/g/collect
  • https://region1.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.antiquites-en-france.com/favicon.png
  • https://www.antiquites-en-france.com/favicon.png
  • Privacy advice (74)

    TitleAdviceScore
    Avoid using Google Analytics (ga)The page is using Google Analytics meaning you share your users private information with Google. You should use analytics that care about user privacy, something like https://matomo.org.0
    Description: Google Analytics share private user information with Google that your user hasn't agreed on sharing.
    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://www.antiquites-en-france.com/
  • 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://www.antiquites-en-france.com/
  • Do not share user data with third parties. (thirdPartyPrivacy)The page has 6% requests that are 3rd party (4 requests with a size of 178.9 kB). The page also have request to companies that harvest data from users and do not respect users privacy (see https://en.wikipedia.org/wiki/Surveillance_capitalism). The page do 3 analytics requests and uses 1 analytics tool. The page do 4 survelliance requests and uses 2 survelliance tools. The page do 1 tag-manager request and uses 1 tag-manager tool.0
    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:
  • https://www.google-analytics.com/analytics.js
  • https://www.google-analytics.com/j/collect...ics.com/j/collect
  • https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1
  • https://region1.google-analytics.com/g/collect...ics.com/g/collect
  • Page info

    Page info
    TitleAntiquités en France, le guide des antiquaires
    Width1354
    Height3035
    DOM elements477
    Avg DOM depth10
    Max DOM depth16
    Iframes0
    Script tags11
    Local storage0 b
    Session storage0 b
    Network Information API4g

    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
    PHP 7.0100  Programming languages
    HSTS 100  Security
    HTTP/3 100  Miscellaneous

    Data collected using Third Party Web 0.26.2

    Analytics
    Google Analytics
    Survelliance
    Google Analytics
    Google Tag Manager
    Tag-manager
    Google Tag Manager
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Interaction To Next Paint | Long Aninimation Frames | Visual Elements | 

    Data from run 1

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)133 ms
    First Contentful Paint (FCP)388 ms
    Largest Contentful Paint (LCP)495 ms
    Cumulative Layout Shift (CLS)0.00
    Interaction to next paint (INP)168 ms
    Total Blocking Time (TBT)55 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP532
    Time spent in recalculate style before FCP49.814 ms
    Extra timings
    TTFB133 ms
    First Paint388 ms
    Load Event End772 ms
    Fully loaded791 ms

    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 typeDIV
    Element/tag<div class="texture-content-1"></div>
    Render time 495 ms
    Element render delay153 ms
    TTFB133 ms
    Resource delay104 ms
    Resource load duration105 ms
    Elements that needed recalculate style before LCP532
    Time spent in recalculate style before LCP51.018 ms
    Load time394 ms
    URL https://www.antiquit...ure-content-1.png
    Size (width*height)78384
    DOM path
    div:eq(3) > div:eq(0) > div > div > div> div:eq(3) > div:eq(0) > div > div > div>
    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.

    The Largest Contentful Paint API highlighted this image as a part of the LCP.

    LCP

    Detected Cumulative Layout Shift

    0.00292 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.00292<li class="menu-item"></li>,<ul class="sub-menu second-sub-menu"></ul>,<li class="menu-item "></li>,<div class="block-search"></div>,<li class="menu-item"></li>
    body > div:eq(0) > div > div > div > div > ul > li:eq(1),body > div#jz-header > div#jz-container > div > div > ul:eq(1),body > div:eq(0) > div > div > div > div > ul > li:eq(2),body > div#jz-header > div#jz-container > div > div > div,body > div:eq(0) > div > div > div > div > ul > li:eq(3)
    Layout shift

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

    Interaction to Next Paint

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

    The measured latency was 168 ms.

    Event typemouseover
    Element typeHTML
    Element class name
    Event targethtml
    Load state when the event happenedloading

    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
    59 ms141.5 ms2.5 ms1.9 ms0.6 ms
    https://www.antiquites-en-france.com/galleria/galleriacustom.min.js

    Forced Style And Layout Duration: 1 ms

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Source Function Name:  g
    Window attribution: self
    Source char position: 7536

    https://www.antiquites-en-france.com/galleria/galleriacustom.min.js

    Forced Style And Layout Duration: 1 ms

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Source Function Name:  g
    Window attribution: self
    Source char position: 7536

    https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1

    Invoker:  https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    48 ms79.8 ms47.2 ms9.2 ms38 ms
    https://www.antiquites-en-france.com/js/jquery.min.js

    Forced Style And Layout Duration: 33 ms

    Invoker:  #document.onDOMContentLoaded
    Invoker Type: event-listener
    Source Function Name:  B
    Window attribution: self
    Source char position: 14290

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    9 ms35.8 ms26.2 ms24.6 ms1.6 ms
    https://www.antiquites-en-france.com/

    Forced Style And Layout Duration: 21 ms

    Invoker:  https://www.antiquites-en-france.com/
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms84.6 ms0.4 ms0.8 ms-0.4 ms
    https://www.antiquites-en-france.com/js/jquery.min.js

    Invoker:  https://www.antiquites-en-france.com/js/jquery.min.js
    Invoker Type: classic-script
    Window attribution: self

    https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js

    Forced Style And Layout Duration: 2 ms

    Invoker:  https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js
    Invoker Type: classic-script
    Window attribution: self

    https://www.antiquites-en-france.com/galleria/galleriacustom.min.js

    Invoker:  https://www.antiquites-en-france.com/galleria/galleriacustom.min.js
    Invoker Type: classic-script
    Window attribution: self

    Server timings

    There are no Server Timings.

    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 (0.jpg)500 ms 291 305 150 150
    <img width="150px" height="150px" src="/uploads/items/thumb_blank/0.jpg" alt="Miroir Louis XVI 18 ème en bois sculpté et doré">
    Heading500 ms 490 180 770 30
    <h1></h1>
    LargestContentfulPaint500 ms 490 162 770 142
    <div class="texture-content-1"></div>
    | 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 requests63
    Total domains4
    Total transfer size2.6 MB
    Total content size3.3 MB
    Responses missing compression17
    Number of cookies1
    Third party cookies0
    Requests per response code
    20060
    2041
    4042

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b6.6 KB28.7 KB1
    css0 b28.1 KB167.7 KB2
    javascript0 b283.0 KB868.3 KB7
    image0 b2.0 MB2.0 MB44
    plain0 b289.9 KB288.0 KB7
    Total0 b2.6 MB3.3 MB61

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    www.antiquites-en-france.com5.507 s2.4 MB2.8 MB59
    www.google-analytics.com47 ms21.3 KB51.1 KB2
    www.googletagmanager.com50 ms153.4 KB450.0 KB1
    region1.google-analytics.com44 msN/A0 b1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 week1 week
    Last modified2 days10 years28 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript0 b0
    image1.5 KB1
    font0 b0
    Total1.5 KB1

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css1.9 KB1
    javascript153.4 KB1
    image978.1 KB9
    font0 b0
    plain473 B2
    Total1.1 MB13

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    500

    Render information

    CPU Long Tasks | CPU Time Spent | CPU Time Spent Per Request | CPU Time Per Tool/Domain | 

    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 55
    Max Potential First Input Delay 105
    Long Tasks before First Paint150
    Long Tasks before First Contentful Paint150
    Long Tasks before Largest Contentful Paint150
    Long Tasks after Load Event End00
    Total Long Tasks2155

    CPU last long task happened at 628 ms

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    self33950window
    self628105window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML44
    styleLayout158
    paintCompositeRender53
    scriptParseCompile1
    scriptEvaluation472
    garbageCollection8
    other174
    Events (ms)
    FunctionCall262
    RunTask143
    v8.run140
    Layout84
    UpdateLayoutTree72
    Paint47
    ParseHTML33
    RunMicrotasks21
    TimerFire16
    v8.callFunction16
    HTMLDocumentParser::MaybeFetchQueuedPreloads13

    Time spent per request

    URLCPU time (ms)
    https://www.antiquites-en-france.com/galleria/themes/azur/galleria.azur.min.js433
    https://www.antiquites-en-france.com/galleria/galleriacustom.min.js311
    https://www.antiquites-en-france.com/js/jquery.min.js110
    https://www.googletagmanager.com/gtag/js?id=G-58XGFJWZ1E&cx=c&_slc=1109
    https://www.antiquites-en-france.com/27
    https://www.google-analytics.com/analytics.js23
    https://www.antiquites-en-france.com/vendor/jquery-ui/js/jquery-ui-1.8.22.custom.min.js18

    CPU time spent

    Tool/domainTime (ms)
    www.antiquites-en-france.com900.1
    Google Tag Manager109.2
    Google Analytics23.4
    | Categories | | Tools | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.26.2.

    CategoryRequests
    analytics 3
    survelliance 4
    tag-manager 1
    CategoryNumber of tools
    analytics 1
    survelliance 2
    tag-manager 1

    Third party requests and tools

    analytics (3 requests)
    Google Analytics
    survelliance (4 requests)
    Google Analytics
    Google Tag Manager
    tag-manager (1 requests)
    Google Tag Manager

    First party requests and sizes per content type

    Calculated using .*antiquites-en-france.* (use --firstParty to configure).

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b6.6 KB28.7 KB1
    css0 b28.1 KB167.7 KB2
    javascript0 b108.8 KB367.1 KB5
    image0 b2.0 MB2.0 MB44
    font0 b0 b0 b0
    plain0 b289.5 KB288.0 KB5
    TotalN/A2.4 MB2.8 MB59

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b0 b0 b0
    javascript0 b174.2 KB501.1 KB2
    image0 b0 b0 b0
    font0 b0 b0 b0
    plain0 b473 B15 B2
    TotalN/A174.7 KB501.1 KB4

    Axe

    Axe is an accessibility testing engine for websites and other HTML-based user interfaces. Tested using axe-core version 4.10.2. Read more about axe-core .

    Violations

    Median number of violations for all the runs. Check each individual run to see all the violations.

    TypeViolations (median)
    Critical 1 (6 issues)
    Serious3 (8 issues)
    Moderate2 (26 issues)
    Minor0 (0 issues)