Tested 2025-04-01 13:19:39 using Chrome 134.0.6998.35 (runtime settings).
Metric | Value |
---|---|
Page metrics | |
Performance score | 89 |
Total page size | 1.1 MB |
Requests | 23 |
Timing metrics | |
TTFB | 749 ms |
First Paint | 1.544 s |
Fully Loaded | 1.234 s |
TTFB | 749 ms |
Cumulative Layout Shift (CLS) | 0.00 |
552 ms | |
CPU metrics | |
CPU long tasks | 199 |
CPU last long task happens at | 288.413 s |
Visual Metrics | |
First Visual Change | 1.534 s |
Speed Index | 1.534 s |
Visual Complete 85% | 1.534 s |
Visual Complete 99% | 1.534 s |
Last Visual Change | 1.534 s |
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.1.1.
Title | Advice | Score | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Inline CSS for faster first render (inlineCss) | The page has both inline styles as well as it is requesting 4 CSS files inside of the head. Let's only inline CSS for really fast render. | 90 | |||||||||||||||
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. | |||||||||||||||||
Offenders: | |||||||||||||||||
Avoid CPU Long Tasks (longTasks) | The page has 200 CPU long tasks with the total of 11.483 s. The total blocking time is 0 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. | 0 | |||||||||||||||
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: | |||||||||||||||||
Avoid Frontend single point of failures (spof) | The page has 4 requests inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head. | 90 | |||||||||||||||
Description: A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag. | |||||||||||||||||
Offenders: | |||||||||||||||||
Total CSS size shouldn't be too big (cssSize) | The total CSS transfer size is 96.7 kB and uncompressed size is 737 kB. That is big and the CSS could most probably be smaller. | 50 | |||||||||||||||
Description: Delivering a massive amount of CSS to the browser is not the best thing you can do, because it means more work for the browser when parsing the CSS against the HTML and that makes the rendering slower. Try to send only the CSS that is used on that page. And make sure to remove CSS rules when they aren't used anymore. | |||||||||||||||||
Offenders:
| |||||||||||||||||
Avoid too many fonts (fewFonts) | The page has 4 font requests. Do you really need them? What value does the fonts give the user? | 60 | |||||||||||||||
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 817.4 kB and the uncompressed size is 2 MB. This is totally crazy! There is really room for improvement here. | 0 | |||||||||||||||
Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks? | |||||||||||||||||
Offenders: | |||||||||||||||||
Make each CSS response small (optimalCssSize) | https://frontend-stage-static.k8s.dev.sokolov.io/_next/static/css/e2bc761d19195b7f.css size is 64.5 kB (64532) and that is bigger than the limit of 14.5 kB. https://frontend-stage-static.k8s.dev.sokolov.io/_next/static/css/b227bf5eecb59a38.css size is 19.5 kB (19489) 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: |
Your best practice score is perfect!
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: | ||
Set a strict transport header to make sure the user always use HTTPS. (strictTransportSecurityHeader) | A strict transport header is set but miss out on setting includeSubDomainsThe max age is lower than six months. Increase it to get a better score. | 70 |
Description: The HTTP Strict-Transport-Security response header (often abbreviated as HSTS) lets a web site tell browsers that it should only be accessed using HTTPS, instead of using HTTP. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security. |
Page info | |
---|---|
Title | Ювелирная компания SOKOLOV. Официальный интернет магазин |
Width | 1904 |
Height | 15278 |
DOM elements | 543 |
Avg DOM depth | 10 |
Max DOM depth | 15 |
Iframes | 0 |
Script tags | 17 |
Local storage | 0 b |
Session storage | 0 b |
Network Information API | 4g |
Resource Hints |
---|
dns-prefetch |
http://cdn.diginetica.net/ |
preconnect |
http://autocomplete.diginetica.net/ |
https://static.criteo.net/ |
https://cm.g.doubleclick.net/ |
https://ad.mail.ru/ |
https://googleads.g.doubleclick.net/ |
https://www.googletagmanager.com/ |
https://www.google-analytics.com/ |
https://api.mindbox.ru/ |
https://api.flocktory.com/ |
https://demo4.paasweb.co.il/ |
Data collected using Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies html
or --browsertime.chrome.includeResponseBodies html
to help Wappalyzer find more information about technologies used.
Technology | Confidence | Category |
---|---|---|
Nginx | 100 | Web servers Reverse proxies |
HSTS | 100 | Security |
Visual Metrics | |
---|---|
First Visual Change | 1.534 s |
Speed Index | 1.534 s |
Visual Complete 85% | 1.534 s |
Visual Complete 95% | 1.534 s |
Visual Complete 99% | 1.534 s |
Last Visual Change | 1.534 s |
Visual Readiness | 0 ms |
Navigation Timing | |
---|---|
backEndTime | 749 ms |
domContentLoadedTime | 339.919 s |
domInteractiveTime | 778 ms |
domainLookupTime | 0 ms |
frontEndTime | 339.171 s |
pageDownloadTime | 2 ms |
pageLoadTime | 339.922 s |
redirectionTime | 0 ms |
serverConnectionTime | 6 ms |
serverResponseTime | 741 ms |
Google Web Vitals | |
---|---|
Time to first byte (TTFB) | 749 ms |
Interaction to next paint (INP) | 552 ms |
Total Blocking Time (TBT) | 0 ms |
Extra timings | |
---|---|
TTFB | 749 ms |
First Paint | 1.544 s |
Load Event End | 339.922 s |
Fully loaded | 1.234 s |
No layout shift detected.
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 552 ms.
Event type | pointerover |
Element type | DIV |
Element class name | Skeleton_skeleton__6SHcN |
Event target | div.swiper>div.swiper-wrapper>div.swiper-slide>div.Skeleton_skeleton__6SHcN |
Load state when the event happened | dom-interactive |
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 |
---|---|---|---|---|
45.7 ms | 21.2 ms | 95.8 ms | 83.8 ms | 12 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
36.6 ms | 9.1 ms | 86.6 ms | 74.8 ms | 11.8 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
35.2 ms | 10.3 ms | 85.3 ms | 65.7 ms | 19.6 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
32.3 ms | 6.7 ms | 82.3 ms | 69.1 ms | 13.2 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
32 ms | 2.8 ms | 82 ms | 79.7 ms | 2.3 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
22.3 ms | 6.1 ms | 72.2 ms | 69.8 ms | 2.4 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
16.3 ms | 0.1 ms | 66.3 ms | 64 ms | 2.3 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
16.1 ms | 1.1 ms | 66.1 ms | 61.2 ms | 4.9 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
14.4 ms | 0.3 ms | 64.3 ms | 61.8 ms | 2.5 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
11.6 ms | 0.1 ms | 61.6 ms | 59.9 ms | 1.7 ms |
No availible script information. |
name | duration | description |
---|---|---|
nginx_request_time | 0.731 | |
nginx_upstream_connect_time | 0.005 | |
nginx_upstream_header_time | 0.731 | |
nginx_upstream_response_time | 0 |
There are no custom configured scripts.
There are no custom extra metrics from scripting.
name | value |
---|---|
AudioHandlers | 0 |
AudioWorkletProcessors | 0 |
Documents | 1 |
Frames | 1 |
JSEventListeners | 0 |
LayoutObjects | 375 |
MediaKeySessions | 0 |
MediaKeys | 0 |
Nodes | 628 |
Resources | 27 |
ContextLifecycleStateObservers | 7 |
V8PerContextDatas | 1 |
WorkerGlobalScopes | 0 |
UACSSResources | 0 |
RTCPeerConnections | 0 |
ResourceFetchers | 1 |
AdSubframes | 0 |
DetachedScriptStates | 0 |
ArrayBufferContents | 0 |
LayoutCount | 4 |
RecalcStyleCount | 9529 |
LayoutDuration | 7 |
RecalcStyleDuration | 18117 |
DevToolsCommandDuration | 262 |
ScriptDuration | 36 |
V8CompileDuration | 0 |
TaskDuration | 312619 |
TaskOtherDuration | 294197 |
ThreadTime | 41 |
ProcessTime | 1603 |
JSHeapUsedSize | 1507812 |
JSHeapTotalSize | 3035136 |
FirstMeaningfulPaint | -21798679003 |
How the page is built.
Summary | |
---|---|
HTTP version | HTTP/1.1 |
Total requests | 23 |
Total domains | 3 |
Total transfer size | 1.1 MB |
Total content size | 2.8 MB |
Responses missing compression | 17 |
Number of cookies | 1 |
Third party cookies | 0 |
Requests per response code | |
---|---|
200 | 23 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 622 B | 10.0 KB | 57.6 KB | 1 |
css | 3.0 KB | 94.4 KB | 719.7 KB | 4 |
javascript | 10.6 KB | 798.3 KB | 1.9 MB | 14 |
font | 0 b | 208.2 KB | 206.8 KB | 4 |
Total | 14.1 KB | 1.1 MB | 2.8 MB | 23 |
Domain | Total download time | Transfer Size | Content Size | Requests |
---|---|---|---|---|
stage.sokolov.ru | 753 ms | 10.0 KB | 57.6 KB | 1 |
cdn.sokolov.ru | 586 ms | 208.2 KB | 206.8 KB | 4 |
frontend-stage-static.k8s.dev.sokolov.io | 2.184 s | 892.7 KB | 2.6 MB | 18 |
type | min | median | max |
---|---|---|---|
Expires | 0 seconds | 1 year | 1 year |
Last modified | 6 days | 1 week | 1 week |
Render blocking information directly from Chrome.
Blocking | In body parser blocking | Potentially blocking |
---|---|---|
0 | 0 | 0 |
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 | 0 | |
Max Potential First Input Delay | 0 | |
Long Tasks before First Paint | 0 | 0 |
Long Tasks before First Contentful Paint | 0 | 0 |
Long Tasks before Largest Contentful Paint | 0 | 0 |
Long Tasks after Load Event End | 0 | 0 |
Total Long Tasks | 199 | 11434 |
CPU last long task happened at 288.413 s
name | startTime | duration | containerId | containerName | containerSrc | containerType |
---|---|---|---|---|---|---|
unknown | 4035 | 50 | window | |||
unknown | 6706 | 55 | window | |||
unknown | 9741 | 52 | window | |||
unknown | 12271 | 56 | window | |||
unknown | 43188 | 52 | window | |||
unknown | 43367 | 51 | window | |||
unknown | 43916 | 62 | window | |||
unknown | 44781 | 51 | window | |||
unknown | 46221 | 52 | window | |||
unknown | 52014 | 55 | window | |||
unknown | 68161 | 74 | window | |||
unknown | 68246 | 88 | window | |||
unknown | 68369 | 67 | window | |||
unknown | 68458 | 97 | window | |||
unknown | 68565 | 89 | window | |||
unknown | 68665 | 54 | window | |||
unknown | 69098 | 54 | window | |||
unknown | 69152 | 67 | window | |||
unknown | 70034 | 83 | window | |||
unknown | 70206 | 60 | window | |||
unknown | 80187 | 54 | window | |||
unknown | 80314 | 50 | window | |||
unknown | 80506 | 51 | window | |||
unknown | 88336 | 56 | window | |||
unknown | 88537 | 81 | window | |||
unknown | 91055 | 52 | window | |||
unknown | 91108 | 52 | window | |||
unknown | 98301 | 50 | window | |||
unknown | 100032 | 52 | window | |||
unknown | 106132 | 58 | window | |||
unknown | 115755 | 52 | window | |||
unknown | 117920 | 51 | window | |||
unknown | 118500 | 54 | window | |||
unknown | 121088 | 52 | window | |||
unknown | 126362 | 51 | window | |||
unknown | 128534 | 87 | window | |||
unknown | 131105 | 50 | window | |||
unknown | 131635 | 55 | window | |||
unknown | 131878 | 54 | window | |||
unknown | 131937 | 53 | window | |||
unknown | 134073 | 52 | window | |||
unknown | 134219 | 51 | window | |||
unknown | 136122 | 51 | window | |||
unknown | 144190 | 58 | window | |||
unknown | 150369 | 61 | window | |||
unknown | 155954 | 59 | window | |||
unknown | 162966 | 50 | window | |||
unknown | 166249 | 55 | window | |||
unknown | 166316 | 60 | window | |||
unknown | 170161 | 54 | window | |||
unknown | 188515 | 52 | window | |||
unknown | 188568 | 52 | window | |||
unknown | 193108 | 57 | window | |||
unknown | 198881 | 50 | window | |||
unknown | 200677 | 51 | window | |||
unknown | 200730 | 56 | window | |||
unknown | 200918 | 53 | window | |||
unknown | 201032 | 54 | window | |||
unknown | 201785 | 58 | window | |||
unknown | 201848 | 51 | window | |||
unknown | 203360 | 51 | window | |||
unknown | 205786 | 53 | window | |||
unknown | 205893 | 55 | window | |||
unknown | 206115 | 51 | window | |||
unknown | 206327 | 56 | window | |||
unknown | 206708 | 67 | window | |||
unknown | 207066 | 56 | window | |||
unknown | 207234 | 51 | window | |||
unknown | 207442 | 54 | window | |||
unknown | 208081 | 58 | window | |||
unknown | 208246 | 52 | window | |||
unknown | 208893 | 58 | window | |||
unknown | 209012 | 52 | window | |||
unknown | 209080 | 58 | window | |||
unknown | 209261 | 53 | window | |||
unknown | 209447 | 57 | window | |||
unknown | 209514 | 51 | window | |||
unknown | 209728 | 58 | window | |||
unknown | 209833 | 52 | window | |||
unknown | 210442 | 55 | window | |||
unknown | 210609 | 63 | window | |||
unknown | 210675 | 60 | window | |||
unknown | 210860 | 50 | window | |||
unknown | 211168 | 59 | window | |||
unknown | 211461 | 53 | window | |||
unknown | 212260 | 57 | window | |||
unknown | 212330 | 50 | window | |||
unknown | 219613 | 50 | window | |||
unknown | 226794 | 54 | window | |||
unknown | 235357 | 62 | window | |||
unknown | 245360 | 52 | window | |||
unknown | 249045 | 64 | window | |||
unknown | 250175 | 64 | window | |||
unknown | 254007 | 59 | window | |||
unknown | 255045 | 52 | window | |||
unknown | 255815 | 51 | window | |||
unknown | 260185 | 55 | window | |||
unknown | 260242 | 56 | window | |||
unknown | 260309 | 52 | window | |||
unknown | 261128 | 52 | window | |||
unknown | 261415 | 51 | window | |||
unknown | 261584 | 50 | window | |||
unknown | 261746 | 53 | window | |||
unknown | 261881 | 55 | window | |||
unknown | 261947 | 52 | window | |||
unknown | 262244 | 66 | window | |||
unknown | 263175 | 51 | window | |||
unknown | 263342 | 55 | window | |||
unknown | 263931 | 63 | window | |||
unknown | 264042 | 51 | window | |||
unknown | 264911 | 58 | window | |||
unknown | 265203 | 76 | window | |||
unknown | 265360 | 57 | window | |||
unknown | 265474 | 55 | window | |||
unknown | 266594 | 56 | window | |||
unknown | 266697 | 59 | window | |||
unknown | 266768 | 52 | window | |||
unknown | 266991 | 58 | window | |||
unknown | 267049 | 59 | window | |||
unknown | 267326 | 71 | window | |||
unknown | 267458 | 58 | window | |||
unknown | 267997 | 54 | window | |||
unknown | 268080 | 59 | window | |||
unknown | 268140 | 77 | window | |||
unknown | 268238 | 56 | window | |||
unknown | 268321 | 77 | window | |||
unknown | 268433 | 51 | window | |||
unknown | 268496 | 71 | window | |||
unknown | 268651 | 59 | window | |||
unknown | 268788 | 51 | window | |||
unknown | 268840 | 73 | window | |||
unknown | 268980 | 56 | window | |||
unknown | 269041 | 51 | window | |||
unknown | 269107 | 55 | window | |||
unknown | 269356 | 60 | window | |||
unknown | 269695 | 60 | window | |||
unknown | 269758 | 55 | window | |||
unknown | 269933 | 54 | window | |||
unknown | 270090 | 54 | window | |||
unknown | 270262 | 55 | window | |||
unknown | 270677 | 59 | window | |||
unknown | 270739 | 61 | window | |||
unknown | 271006 | 67 | window | |||
unknown | 271087 | 69 | window | |||
unknown | 271226 | 66 | window | |||
unknown | 271305 | 56 | window | |||
unknown | 272048 | 52 | window | |||
unknown | 272163 | 59 | window | |||
unknown | 272227 | 53 | window | |||
unknown | 272341 | 61 | window | |||
unknown | 272422 | 54 | window | |||
unknown | 272482 | 67 | window | |||
unknown | 272792 | 73 | window | |||
unknown | 272939 | 50 | window | |||
unknown | 272995 | 65 | window | |||
unknown | 273241 | 62 | window | |||
unknown | 273380 | 51 | window | |||
unknown | 273568 | 50 | window | |||
unknown | 273910 | 58 | window | |||
unknown | 274059 | 58 | window | |||
unknown | 274199 | 71 | window | |||
unknown | 274907 | 61 | window | |||
unknown | 275206 | 63 | window | |||
unknown | 275273 | 57 | window | |||
unknown | 275398 | 50 | window | |||
unknown | 275673 | 66 | window | |||
unknown | 275808 | 56 | window | |||
unknown | 278557 | 59 | window | |||
unknown | 278619 | 55 | window | |||
unknown | 279505 | 50 | window | |||
unknown | 280008 | 53 | window | |||
unknown | 280608 | 52 | window | |||
unknown | 281526 | 58 | window | |||
unknown | 281874 | 51 | window | |||
unknown | 283265 | 64 | window | |||
unknown | 283340 | 51 | window | |||
unknown | 283396 | 69 | window | |||
unknown | 284424 | 50 | window | |||
unknown | 284475 | 51 | window | |||
unknown | 284840 | 60 | window | |||
unknown | 285024 | 58 | window | |||
unknown | 285149 | 50 | window | |||
unknown | 285207 | 73 | window | |||
unknown | 285293 | 55 | window | |||
unknown | 285495 | 51 | window | |||
unknown | 285943 | 55 | window | |||
unknown | 286058 | 67 | window | |||
unknown | 286141 | 63 | window | |||
unknown | 286389 | 57 | window | |||
unknown | 286629 | 55 | window | |||
unknown | 286808 | 56 | window | |||
unknown | 287090 | 53 | window | |||
unknown | 287258 | 54 | window | |||
unknown | 287656 | 64 | window | |||
unknown | 287840 | 53 | window | |||
unknown | 287960 | 54 | window | |||
unknown | 288149 | 55 | window | |||
unknown | 288277 | 50 | window | |||
unknown | 288413 | 57 | window |
Calculated using Tracium.
Categories (ms) | |
---|---|
parseHTML | 15 |
styleLayout | 11246 |
paintCompositeRender | 5219 |
scriptParseCompile | 0 |
scriptEvaluation | 22 |
garbageCollection | 40 |
other | 125528 |
Events (ms) | |
---|---|
RunTask | 123531 |
UpdateLayoutTree | 11240 |
Paint | 3504 |
PaintImage | 1536 |
PrePaint | 1006 |
Layerize | 428 |
Commit | 361 |
UpdateLayer | 178 |
IntersectionObserverController::computeIntersections | 168 |
RunMicrotasks | 21 |
V8.GC_HEAP_EMBEDDER_TRACING_EPILOGUE | 12 |
V8.GC_MC_EVACUATE_COPY_PARALLEL | 11 |
Third party requests categorised by Third party web version 0.26.2.
Calculated using .*sokolov.* (use --firstParty
to configure).
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 622 B | 10.0 KB | 57.6 KB | 1 |
css | 3.0 KB | 94.4 KB | 719.7 KB | 4 |
javascript | 10.6 KB | 798.3 KB | 1.9 MB | 14 |
image | 0 b | 0 b | 0 b | 0 |
font | 0 b | 208.2 KB | 206.8 KB | 4 |
Total | 14.1 KB | 1.1 MB | 2.8 MB | 23 |
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 | 0 b | 0 b | 0 |
image | 0 b | 0 b | 0 b | 0 |
font | 0 b | 0 b | 0 b | 0 |
Total | N/A | N/A | N/A |
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 .
critical | |
---|---|
Buttons must have discernible text (cat.name-role-value,wcag2a,wcag412,section508,section508.22.a,TTv5,TT6.a,EN-301-549,EN-9.4.1.2,ACT) - button-name | Ensure buttons have discernible text |
Fix any of the following:
Element does not have inner 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
Element does not have an implicit (wrapped) <label>
Element does not have an explicit <label>
Element's default semantics were not overridden with role="none" or role="presentation"
| |
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 4.17 (foreground color: #ffffff, background color: #257ae8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1
| |
minor | |
Headings should not be empty (cat.name-role-value,best-practice) - empty-heading | Ensure headings have discernible 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
| |
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
| |
critical | |
Zooming and scaling must not be disabled (cat.sensory-and-visual-cues,wcag2aa,wcag144,EN-301-549,EN-9.1.4.4,ACT) - meta-viewport | Ensure <meta name="viewport"> does not disable text scaling and zooming |
Fix any of the following:
user-scalable=no on <meta> tag disables zooming on mobile devices
| |
moderate | |
Page should contain a level-one heading (cat.semantics,best-practice) - page-has-heading-one | Ensure that the page, or at least one of its frames contains a level-one heading |
Fix all of the following:
Page must have a level-one heading
|