Tested 2026-03-01 02:32:21 using Chrome 132.0.6834.83 (runtime settings).
| Metric | Value |
|---|---|
| Page metrics | |
| Performance score | 82 |
| Total page size | 1.8 MB |
| Requests | 50 |
| Timing metrics | |
| TTFB | 127 ms |
| First Paint | 487 ms |
| Fully Loaded | 815 ms |
| Google Web Vitals | |
| TTFB | 127 ms |
| First Contentful Paint (FCP) | 487 ms |
| Largest Contentful Paint (LCP) | 756 ms |
| Cumulative Layout Shift (CLS) | 0.04 |
| 152 ms | |
| Total Blocking Time | 20 ms |
| Max Potential FID | 70 ms |
| CPU metrics | |
| CPU long tasks | 4 |
| CPU last long task happens at | 603 ms |
| Visual Metrics | |
| First Visual Change | 467 ms |
| Speed Index | 618 ms |
| Visual Complete 85% | 733 ms |
| Visual Complete 99% | 800 ms |
| Last Visual Change | 800 ms |
Use--filmstrip.showAll to show all filmstrips.
0.8 sVisual Complete 85% 733 msVisual Complete 95% 733 msLargest Image 733 msHeading 733 msLayout Shift 0.03692 735 msLCP <IMG> 756 msDOM Content Loaded Time 770 msLast Visual Change 800 msVisual Complete 99% 800 msThe 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.
| Title | Advice | Score | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Avoid slowing down the critical rendering path (avoidRenderBlocking) | The page has 8 blocking requests and 3 in body parser blocking (3 JavaScript and 8 CSS). There are 1 potentially render blocking requests. You need to verify if it is render blocking: https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR | 69 | |||||||||||||||
| 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: | |||||||||||||||||
| Don't scale images in the browser (avoidScalingImages) | The page has 12 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. | 0 | |||||||||||||||
| 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: | |||||||||||||||||
| 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. | |||||||||||||||||
| Have a fast largest contentful paint (largestContentfulPaint) | You can add fetchPriority="high" to the image to increase the load priority in Chrome. The image is lazy loaded using the lazy attribute, you should avoid that on the LCP image. | 75 | |||||||||||||||
| Description: Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance. | |||||||||||||||||
| Avoid CPU Long Tasks (longTasks) | The page has 4 CPU long tasks with the total of 403 ms. The total blocking time is 20 ms and 3 long tasks before first contentful paint with total time of 333 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. | 20 | |||||||||||||||
| 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: | |||||||||||||||||
| Long cache headers is good (cacheHeadersLong) | The page has 36 requests that have a shorter cache time than 30 days (but still a cache time). | 64 | |||||||||||||||
| 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: | |||||||||||||||||
| Always compress text content (compressAssets) | The page has 1 request that are served uncompressed. You could save a lot of bytes by sending them compressed instead. | 90 | |||||||||||||||
| 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:
| |||||||||||||||||
| Avoid too many fonts (fewFonts) | The page has 12 font requests. Do you really need them? What value does the fonts give the user? | 0 | |||||||||||||||
| Description: How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive. | |||||||||||||||||
| Offenders: | |||||||||||||||||
| Total JavaScript size shouldn't be too big (javascriptSize) | The total JavaScript transfer size is 197.3 kB and the uncompressed size is 573.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:
| |||||||||||||||||
| Make each CSS response small (optimalCssSize) | https://www.proantic.com/css/A.fontawesome.min.css,,qtimestampcssproantic202602261142+regular.min.css,,qtimestampcssproantic202602261142,Mcc.wyifselPA4.css.pagespeed.cf.3EmdiLN2Bl.css size is 35.8 kB (35812) and that is bigger than the limit of 14.5 kB. https://www.proantic.com/css/A.main.css,qtimestampcssproantic20260226114211112221.pagespeed.cf.xMCdCnwnG7.css size is 15.4 kB (15379) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB. | 80 | |||||||||||||||
| 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:
| |||||||||||||||||
| 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: | |||||||||||||||||
| Title | Advice | Score |
|---|---|---|
| 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 6% requests that are 3rd party (3 requests with a size of 182 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 2 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: | ||
| Page info | |
|---|---|
| Title | Dernières antiquités |
| Width | 1350 |
| Height | 11616 |
| DOM elements | 2775 |
| Avg DOM depth | 9 |
| Max DOM depth | 13 |
| Iframes | 0 |
| Script tags | 17 |
| Local storage | 0 b |
| Session storage | 0 b |
| Network Information API | 4g |
| Resource Hints |
|---|
| dns-prefetch |
| https://cdn-images.mailchimp.com/ |
| preconnect |
| https://cdn-images.mailchimp.com/ |
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.
| Technology | Confidence | Category |
|---|---|---|
| PayPal | 100 | Payment processors |
| Nginx | 100 | Web servers Reverse proxies |
| HSTS | 100 | Security |
| Google PageSpeed 1.13.35.2 | 100 | Caching Web server extensions Performance |
| Cloudflare | 100 | CDN |
| HTTP/3 | 100 | Miscellaneous |
Data collected using Third Party Web 0.26.2
| Cdn |
|---|
| Google CDN |
| JSDelivr CDN |
| Survelliance |
| Google CDN |
| Google Tag Manager |
| Tag-manager |
| Google Tag Manager |
| Visual Metrics | |
|---|---|
| First Visual Change | 467 ms |
| Speed Index | 618 ms |
| Largest Image | 733 ms |
| Heading | 733 ms |
| LargestContentfulPaint | 733 ms |
| Last Meaningful Paint | 733 ms |
| Largest Contentful Paint | 733 ms |
| Visual Complete 85% | 733 ms |
| Visual Complete 95% | 733 ms |
| Visual Complete 99% | 800 ms |
| Last Visual Change | 800 ms |
| Visual Readiness | 333 ms |
| Navigation Timing | |
|---|---|
| backEndTime | 127 ms |
| domContentLoadedTime | 770 ms |
| domInteractiveTime | 770 ms |
| domainLookupTime | 0 ms |
| frontEndTime | 667 ms |
| pageDownloadTime | 7 ms |
| pageLoadTime | 801 ms |
| redirectionTime | 0 ms |
| serverConnectionTime | 19 ms |
| serverResponseTime | 109 ms |
| Google Web Vitals | |
|---|---|
| Time to first byte (TTFB) | 127 ms |
| First Contentful Paint (FCP) | 487 ms |
| Largest Contentful Paint (LCP) | 756 ms |
| Cumulative Layout Shift (CLS) | 0.04 |
| Interaction to next paint (INP) | 152 ms |
| Total Blocking Time (TBT) | 20 ms |
| First Contentful Paint info | |
|---|---|
| Elements that needed recalculate style before FCP | 1693 |
| Time spent in recalculate style before FCP | 56.346 ms |
| Extra timings | |
|---|---|
| TTFB | 127 ms |
| First Paint | 487 ms |
| Load Event End | 802 ms |
| Fully loaded | 815 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 loading="lazy" src="https://www.proantic.com/galerie/antikarts/img/small/1716336-main-69a39c7a5b4a2.jpg" alt="Sesterce SALVS AVGG de Trébonien Galle — Certificat d’authenticité" class="img-selection"> |
| Render time | 756 ms |
| Element render delay | 137 ms |
| TTFB | 127 ms |
| Resource delay | 472 ms |
| Resource load duration | 20 ms |
| Elements that needed recalculate style before LCP | 1697 |
| Time spent in recalculate style before LCP | 57.379 ms |
| Load time | 673 ms |
| URL | https://www.proantic...69a39c7a5b4a2.jpg |
| Size (width*height) | 44400 |
| DOM path | |
| main > div#section-nouveautes > section#minheight > div#login_ajax_after > div:eq(0) > div:eq(0) > a > img> main > div#section-nouveautes > section#minheight > div#login_ajax_after > div:eq(0) > div:eq(0) > a > img> | |
0.03775 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.03692 | ,<div class="logo-antiquaires-favoris link-text cypress-objet-3d " data-param="3d" onclick="buttonFiltre(this); return false;"></div>,<a href="https://www.proantic.com/1716336-sesterce-salvs-avgg-de-trebonien-galle-certificat-dauthenticite.html" class="card-liste-objets-bottom"></a>,<a class="object-antiquaire-overlay" style="display: flex;align-items: center;justify-content: center;" href="https://www.proantic.com/galerie/antikarts/"></a>,<a href="https://www.proantic.com/1716335-nature-morte-au-buste-egyptien-antique-sur-sellette-de-sculpteur-tableau-fin-xix.html" class="card-liste-objets-bottom"></a> |
| body > main > div#section-nouveautes > section#minheight > h1 > #text,body > main > div#section-nouveautes > section#minheight > div#reload-ajax > div,body > main > div#section-nouveautes > section#minheight > div#login_ajax_after > div:eq(0) > a:eq(0),body > main > div#section-nouveautes > section#minheight > div#login_ajax_after > div:eq(0) > a:eq(1),body > main > div#section-nouveautes > section#minheight > div#login_ajax_after > div:eq(1) > a:eq(0) | |
| 0.00083 | <div class="w-dropdown-nav nav-menu-hover nav-menu-hover-meta"></div>,<div class="nav-nouveau-curr-flag navbar-big-screen"></div>,<div class="w-dropdown-nav nav-menu-hover nav-menu-hover-meta" data-menu="antiquaire"></div>,<div class="w-dropdown-nav nav-menu-hover nav-menu-hover-meta"></div>,<div class="w-dropdown-nav magazine nav-menu-hover nav-menu-hover-meta"></div> |
| body > nav#totop > div > div > nav > div:eq(6),body > nav#totop > div > div > div:eq(0) > div:eq(3),body > nav#totop > div > div > nav > div:eq(7),body > nav#totop > div > div > nav > div:eq(3),body > nav#totop > div > div > nav > div:eq(8) | |

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 (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 152 ms.
| Event type | pointerover |
| Element type | DIV |
| Element class name | container-1440 section-detail-liste-image-container |
| Event target | #section-nouveautes |
| Load state when the event happened | loading |
Read more about the Long Animation Frames API here here.
The top 10 longest animation frames entries
| Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
|---|---|---|---|---|
| 163 ms | 134.3 ms | 127.7 ms | 0.3 ms | 127.4 ms |
| No availible script information. | ||||
| Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
|---|---|---|---|---|
| 79 ms | 79.1 ms | 118.9 ms | 1.1 ms | 117.8 ms |
| No availible script information. | ||||
| Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
|---|---|---|---|---|
| 49 ms | 126 ms | 29 ms | 8.2 ms | 20.8 ms |
| https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR | ||||
Invoker: https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR | ||||
| https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js | ||||
Invoker: https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js | ||||
There are no Server Timings.
There are no custom configured scripts.
There are no custom extra metrics from scripting.
| name | value |
|---|---|
| AudioHandlers | 0 |
| AudioWorkletProcessors | 0 |
| Documents | 5 |
| Frames | 1 |
| JSEventListeners | 151 |
| LayoutObjects | 2493 |
| MediaKeySessions | 0 |
| MediaKeys | 0 |
| Nodes | 8813 |
| Resources | 175 |
| ContextLifecycleStateObservers | 11 |
| V8PerContextDatas | 3 |
| WorkerGlobalScopes | 0 |
| UACSSResources | 0 |
| RTCPeerConnections | 0 |
| ResourceFetchers | 5 |
| AdSubframes | 0 |
| DetachedScriptStates | 2 |
| ArrayBufferContents | 0 |
| LayoutCount | 7 |
| RecalcStyleCount | 8 |
| LayoutDuration | 134 |
| RecalcStyleDuration | 59 |
| DevToolsCommandDuration | 39 |
| ScriptDuration | 116 |
| V8CompileDuration | 2 |
| TaskDuration | 726 |
| TaskOtherDuration | 375 |
| ThreadTime | 1 |
| ProcessTime | 1 |
| JSHeapUsedSize | 4529868 |
| JSHeapTotalSize | 9199616 |
| FirstMeaningfulPaint | 487 |
| Name | Display Time | X | Y | Width | Height |
|---|---|---|---|---|---|
| LargestImage (1716336-main-69a39c7a5b4a2.jpg) | 733 ms | 430 | 472 | 300 | 300 |
| <img loading="lazy" src="https://www.proantic.com/galerie/antikarts/img/small/1716336-main-69a39c7a5b4a2.jpg" alt="Sesterce SALVS AVGG de Trébonien Galle — Certificat d’authenticité" class="img-selection"> | |||||
| Heading | 733 ms | 430 | 224 | 910 | 36 |
| <h1 class="h1-categorie"></h1> | |||||
| LargestContentfulPaint (1716336-main-69a39c7a5b4a2.jpg) | 733 ms | 430 | 472 | 300 | 300 |
| <img loading="lazy" src="https://www.proantic.com/galerie/antikarts/img/small/1716336-main-69a39c7a5b4a2.jpg" alt="Sesterce SALVS AVGG de Trébonien Galle — Certificat d’authenticité" class="img-selection"> | |||||
How the page is built.
| Summary | |
|---|---|
| HTTP version | HTTP/2.0 |
| Total requests | 50 |
| Total domains | 4 |
| Total transfer size | 1.8 MB |
| Total content size | 2.8 MB |
| Responses missing compression | 11 |
| Number of cookies | 1 |
| Third party cookies | 0 |
| Requests per response code | |
|---|---|
| 200 | 50 |
| Content | Header Size | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| html | 0 b | 60.6 KB | 473.3 KB | 1 |
| css | 0 b | 73.7 KB | 329.0 KB | 9 |
| javascript | 0 b | 192.7 KB | 559.7 KB | 4 |
| image | 0 b | 383.7 KB | 375.8 KB | 24 |
| font | 0 b | 1.1 MB | 1.1 MB | 12 |
| Total | 0 b | 1.8 MB | 2.8 MB | 50 |
| Domain | Total download time | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| www.proantic.com | 2.141 s | 1.6 MB | 2.3 MB | 47 |
| ajax.googleapis.com | 35 ms | 30.9 KB | 87.4 KB | 1 |
| cdn.jsdelivr.net | 51 ms | 2.2 KB | 4.3 KB | 1 |
| www.googletagmanager.com | 66 ms | 144.7 KB | 420.8 KB | 1 |
| type | min | median | max |
|---|---|---|---|
| Expires | 0 seconds | 1 week | 1 year |
| Last modified | 37 minutes | 4 days | 16 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 | 88.5 KB | 1 |
| font | 0 b | 0 |
| Total | 88.5 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 | 88.5 KB | 1 |
| font | 0 b | 0 |
| Total | 88.5 KB | 1 |
Render blocking information directly from Chrome.
| Blocking | In body parser blocking | Potentially blocking |
|---|---|---|
| 8 | 3 | 1 |
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.
| Type | Quantity | Total duration (ms) |
|---|---|---|
| Total Blocking Time | 20 | |
| Max Potential First Input Delay | 70 | |
| Long Tasks before First Paint | 3 | 333 |
| Long Tasks before First Contentful Paint | 3 | 333 |
| Long Tasks before Largest Contentful Paint | 4 | 403 |
| Long Tasks after Load Event End | 0 | 0 |
| Total Long Tasks | 4 | 403 |
CPU last long task happened at 603 ms
| name | startTime | duration | containerId | containerName | containerSrc | containerType |
|---|---|---|---|---|---|---|
| unknown | 211 | 119 | window | |||
| self | 382 | 84 | window | |||
| self | 471 | 130 | window | |||
| self | 603 | 70 | window |
Calculated using Tracium.
| Categories (ms) | |
|---|---|
| parseHTML | 196 |
| styleLayout | 193 |
| paintCompositeRender | 55 |
| scriptParseCompile | 2 |
| scriptEvaluation | 118 |
| garbageCollection | 3 |
| other | 146 |
| Events (ms) | |
|---|---|
| Layout | 134 |
| ParseHTML | 128 |
| RunTask | 85 |
| v8.run | 78 |
| HTMLDocumentParser::MaybeFetchQueuedPreloads | 64 |
| UpdateLayoutTree | 58 |
| Paint | 33 |
| FunctionCall | 24 |
| Layerize | 22 |
| HitTest | 20 |
| URL | CPU time (ms) |
|---|---|
| https://www.googletagmanager.com/gtag/js?id=G-YP51KSLLWR | 92 |
| https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js | 19 |
| Tool/domain | Time (ms) |
|---|---|
| Google Tag Manager | 92.1 |
| Google CDN | 18.9 |
Third party requests categorised by Third party web version 0.26.2.
| Category | Requests |
|---|---|
| cdn | 2 |
| survelliance | 2 |
| tag-manager | 1 |
| Category | Number of tools |
|---|---|
| cdn | 2 |
| survelliance | 2 |
| tag-manager | 1 |
| cdn (2 requests) |
| Google CDN |
| JSDelivr CDN |
| survelliance (2 requests) |
| Google CDN |
| Google Tag Manager |
|
| tag-manager (1 requests) |
| Google Tag Manager |
|
Calculated using .*proantic.* (use --firstParty to configure).
| Content | Header Size | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| html | 0 b | 60.6 KB | 473.3 KB | 1 |
| css | 0 b | 73.7 KB | 329.0 KB | 9 |
| javascript | 0 b | 15.0 KB | 47.2 KB | 1 |
| image | 0 b | 383.7 KB | 375.8 KB | 24 |
| font | 0 b | 1.1 MB | 1.1 MB | 12 |
| Total | N/A | 1.6 MB | 2.3 MB | 47 |
| 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 | 177.7 KB | 512.5 KB | 3 |
| image | 0 b | 0 b | 0 b | 0 |
| font | 0 b | 0 b | 0 b | 0 |
| Total | N/A | 177.7 KB | 512.5 KB | 3 |

afterPageCompleteCheck.png

layoutShift.png

largestContentfulPaint.png
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 .
| serious | |
|---|---|
| Elements must meet minimum color contrast ratio thresholds (cat.color,wcag2aa,wcag143,TTv5,TT13.c,EN-301-549,EN-9.1.4.3,ACT) - color-contrast | Ensure the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds |
Fix any of the following:
Element has insufficient color contrast of 2.68 (foreground color: #bc9956, background color: #ffffff, font size: 24.0pt (32px), font weight: normal). Expected contrast ratio of 3:1
| |
| moderate | |
| Heading levels should only increase by one (cat.semantics,best-practice) - heading-order | Ensure the order of headings is semantically correct |
Fix any of the following:
Heading order invalid
| |
| Landmarks should have a unique role or role/label/title (i.e. accessible name) combination (cat.semantics,best-practice) - landmark-unique | Ensure landmarks are unique |
Fix any of the following:
The landmark must have a unique aria-label, aria-labelledby, or title to make landmarks distinguishable
| |
| serious | |
| Links must have discernible text (cat.name-role-value,wcag2a,wcag244,wcag412,section508,section508.22.a,TTv5,TT6.a,EN-301-549,EN-9.2.4.4,EN-9.4.1.2,ACT) - link-name | Ensure links have discernible text |
Fix all of the following:
Element is in tab order and does not have accessible text
Fix any of the following:
Element does not have text that is visible to screen readers
aria-label attribute does not exist or is empty
aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
Element has no title attribute
| |
| moderate | |
| All page content should be contained by landmarks (cat.keyboard,best-practice) - region | Ensure all page content is contained by landmarks |
Fix any of the following:
Some page content is not contained by landmarks
| |