diff --git a/.github/workflows/pull_request_packages.yml b/.github/workflows/pull_request_packages.yml index f63506745c6..5a2fd17ebcd 100644 --- a/.github/workflows/pull_request_packages.yml +++ b/.github/workflows/pull_request_packages.yml @@ -138,6 +138,20 @@ jobs: path: playwright-report retention-days: 30 + # - name: Download @axe-core/playwright HTML report from GitHub Actions Artifacts + # uses: actions/download-artifact@v3 + # with: + # name: axe-report + # path: axe-report + + # - name: Upload @axe-core/playwright HTML report to GitHub Actions Artifacts + # uses: actions/upload-artifact@v3 + # if: always() + # with: + # name: axe-report + # path: axe-report + # retention-days: 30 + analyze_bundle_size: if: ${{ needs.changed_files.outputs.package_vkui == 'true' }} needs: changed_files @@ -235,3 +249,15 @@ jobs: uses: ./.github/workflows/reusable_workflow_pr_worfklow_payload.yml with: action: upload + + # check_a11y: + # needs: [test, test_e2e_prepare_and_upload_report, docs_styleguide_upload, docs_storybook_upload] + # # Не используем always(), т.к. он не учитывает отмену воркфлоу + # # см. https://github.com/orgs/community/discussions/26303 + # if: ${{ !cancelled() }} + # steps: + # - name: Fail if a11y has deteriorated + # if: ${{ needs.a11y_violations.outputs.HEAD > needs.a11y_violations.outputs.BASE }} + # run: | + # echo "::error file=packages/vkui/src/index.ts,line=1::VKUI a11y has decreased" + # exit 1 diff --git a/.github/workflows/pull_request_packages_deploy.yml b/.github/workflows/pull_request_packages_deploy.yml index d8b34c4aaef..697a15eda7e 100644 --- a/.github/workflows/pull_request_packages_deploy.yml +++ b/.github/workflows/pull_request_packages_deploy.yml @@ -184,3 +184,115 @@ jobs: Commit ${{ env.PR_HEAD_SHA }} edit-mode: replace + + # deploy_a11y_report: + # needs: [pr_workflow_payload] + # if: ${{ needs.pr_workflow_payload.outputs.status == 'success' }} + # runs-on: ubuntu-latest + # name: Deploy @axe-core/playwright HTML report + # outputs: + # url: ${{ steps.url.outputs.value }} + # steps: + # - name: Download @axe-core/playwright HTML report from GitHub Actions Artifacts + # id: artifact + # uses: VKCOM/gh-actions/shared/download-workflow-artifact@main + # with: + # name: axe-report + # path: axe-report + + # - name: Deploy @axe-core/playwright HTML report + # if: ${{ steps.artifact.outputs.found_artifact == 'true' }} + # id: deploy + # uses: VKCOM/gh-actions/VKUI/s3@main + # with: + # awsAccessKeyId: ${{ secrets.AWS_ACCESS_KEY_ID }} + # awsSecretAccessKey: ${{ secrets.AWS_SECRET_KEY }} + # awsBucket: ${{ vars.AWS_BUCKET }} + # awsEndpoint: https://${{ vars.AWS_ENDPOINT }} + # command: upload + # commandUploadSrc: axe-report/ + # commandUploadDist: pull/${{ needs.pr_workflow_payload.outputs.pr_number }}/${{ env.PR_HEAD_SHA }}/axe-report + + # - name: Create @axe-core/playwright HTML report url + # if: ${{ steps.deploy.outcome == 'success' }} + # id: url + # run: echo "value=${{ env.AWS_S3_URL }}/pull/${{ needs.pr_workflow_payload.outputs.pr_number }}/${{ env.PR_HEAD_SHA }}/axe-report/index.html" >> $GITHUB_OUTPUT + + # a11y_report_comment: + # needs: [deploy_a11y_report, pr_workflow_payload] + # if: ${{ needs.deploy_a11y_report.outputs.url != '' }} + # runs-on: ubuntu-latest + # name: a11y report comment + # steps: + # - name: Download @axe-core/playwright json report from GitHub Actions Artifacts + # uses: actions/download-artifact@v3 + # with: + # name: a11y-output + # path: a11y-output + + # - name: Get number of a11y violations for BASE and HEAD from @axe-core/playwright json report + # id: get_violations + # run: | + # basejson=`cat packages/vkui/a11y-results.json` + # headjson=`cat a11y-output/a11y-results.json` + # echo "BASE=$(jq -r '.count' <<< $basejson)" >> $GITHUB_OUTPUT + # echo "HEAD=$(jq -r '.count' <<< $headjson)" >> $GITHUB_OUTPUT + + # - name: Find Axe Report URL comment + # uses: peter-evans/find-comment@v2 + # id: find_url_comment + # with: + # issue-number: ${{ needs.pr_workflow_payload.outputs.pr_number }} + # comment-author: 'github-actions[bot]' + # body-includes: + + # - name: stable a11y — Create or update @axe-core/playwright HTML report comment + # if: ${{ steps.get_violations.outputs.HEAD == steps.get_violations.outputs.BASE }} + # uses: peter-evans/create-or-update-comment@v3 + # with: + # comment-id: ${{ steps.find_url_comment.outputs.comment-id }} + # issue-number: ${{ github.event.pull_request.number }} + # body: | + # + # ## ♿ `@axe-core/playwright` Report + + # ### 👌 This PR does not affect accessibility 👌 + + # > There are ${{ steps.get_violations.outputs.HEAD }} violations on ${{ env.PR_HEAD_SHA }} compared to ${{ steps.get_violations.outputs.BASE }} violations in `a11y-results.json`. + + # See full [Axe Accessibility Report](${{ needs.deploy_a11y_report.outputs.url }}) + # edit-mode: replace + + # - name: improved a11y — Create or update @axe-core/playwright HTML report + # if: ${{ steps.get_violations.outputs.HEAD < steps.get_violations.outputs.BASE }} + # uses: peter-evans/create-or-update-comment@v3 + # with: + # comment-id: ${{ steps.find_url_comment.outputs.comment-id }} + # issue-number: ${{ github.event.pull_request.number }} + # body: | + # + # ## ♿ `@axe-core/playwright` Report + + # ### 🎉 Hooray! This PR improves accessibility! 🎉 + + # > There are ${{ steps.get_violations.outputs.HEAD }} violations on ${{ env.PR_HEAD_SHA }} compared to ${{ steps.get_violations.outputs.BASE }} violations in `a11y-results.json`. + + # See full [Axe Accessibility Report](${{ needs.deploy_a11y_report.outputs.url }}) + # edit-mode: replace + + # - name: deteriorated a11y — Create or update @axe-core/playwright HTML report + # if: ${{ steps.get_violations.outputs.HEAD > steps.get_violations.outputs.BASE }} + # uses: peter-evans/create-or-update-comment@v3 + # with: + # comment-id: ${{ steps.find_url_comment.outputs.comment-id }} + # issue-number: ${{ github.event.pull_request.number }} + # body: | + # + # ## ♿ `@axe-core/playwright` Report + + # ### 🚨 Attention! This PR deteriorates accessibility! 🚨 + + # > There are ${{ steps.get_violations.outputs.HEAD }} violations on ${{ env.PR_HEAD_SHA }} compared to ${{ steps.get_violations.outputs.BASE }} violations + + # See full [Axe Accessibility Report](${{ needs.deploy_a11y_report.outputs.url }}) + # edit-mode: replace diff --git a/.github/workflows/reusable_workflow_test_e2e.yml b/.github/workflows/reusable_workflow_test_e2e.yml index 601e0500dd5..9fa662c1f1e 100644 --- a/.github/workflows/reusable_workflow_test_e2e.yml +++ b/.github/workflows/reusable_workflow_test_e2e.yml @@ -70,3 +70,11 @@ jobs: name: all-blob-reports-${{ matrix.shardIndex }}-${{ matrix.shardTotal }} path: packages/vkui/blob-report retention-days: 1 + + - name: Upload @axe-core/playwright json report to GitHub Actions Artifacts + uses: actions/upload-artifact@v3 + if: always() + with: + name: a11y-output-${{ matrix.shardIndex }}-${{ matrix.shardTotal }} + path: packages/vkui/a11y-results-${{ matrix.shardIndex }}-${{ matrix.shardTotal }}.json + retention-days: 1 diff --git a/.gitignore b/.gitignore index 827cf5e6043..12e926b2819 100644 --- a/.gitignore +++ b/.gitignore @@ -12,13 +12,13 @@ node_modules/ npm-debug.log stats.json test-results.json -a11y-results.json lint-results.json e2e-results.json yarn-error.log playwright-report/ blob-report/ all-blob-reports/ +axe-report/ # Caches .cache @@ -32,7 +32,6 @@ coverage # nyc test coverage .nyc_output -.nyc_a11y_output # Snapshot directory of Cypress Image Diff __diff_output__ diff --git a/package.json b/package.json index 8b996008aea..87964ad1845 100644 --- a/package.json +++ b/package.json @@ -3,11 +3,13 @@ "version": "0.0.0", "name": "@vkontakte/vkui-monorepo", "dependencies": { + "@axe-core/playwright": "^4.8.2", "@project-docs/styleguide": "workspace:1.0.0", "@project-tools/eslint-plugin-vkui": "workspace:1.0.0", "@project-tools/postcss-restructure-variable": "workspace:1.0.0", "@project-tools/storybook-addon-cartesian": "workspace:1.0.0", - "@project-tools/stylelint-bad-multiplication": "workspace:1.0.0" + "@project-tools/stylelint-bad-multiplication": "workspace:1.0.0", + "axe-html-reporter": "^2.2.3" }, "devDependencies": { "@csstools/postcss-global-data": "2.1.1", @@ -103,6 +105,7 @@ "test": "yarn workspaces foreach run test", "test:ci": "yarn workspaces foreach run test:ci", "test:e2e": "yarn workspace @vkontakte/vkui run test:e2e", + "test:e2e-shard": "yarn workspace @vkontakte/vkui run test:e2e-shard", "test:e2e-update": "yarn workspace @vkontakte/vkui run test:e2e-update", "test:e2e:ci": "yarn workspace @vkontakte/vkui run test:e2e:ci", "test:e2e-update:ci": "yarn workspace @vkontakte/vkui run test:e2e-update:ci", diff --git a/packages/vkui/a11y-results.json b/packages/vkui/a11y-results.json new file mode 100644 index 00000000000..b964c10ade3 --- /dev/null +++ b/packages/vkui/a11y-results.json @@ -0,0 +1,235451 @@ +{ + "count": 5619, + "violations": [ + { + "id": "color-contrast", + "impact": "serious", + "tags": [ + "cat.color", + "wcag2aa", + "wcag143", + "TTv5", + "TT13.c", + "EN-301-549", + "EN-9.1.4.3", + "ACT" + ], + "description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds", + "help": "Elements must meet minimum color contrast ratio thresholds", + "helpUrl": "https://dequeuniversity.com/rules/axe/4.8/color-contrast?application=playwright", + "nodes": [ + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который тоже не заканчивается", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который не обрезается (multiline)", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#323232", + "contrastRatio": 3.33, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#323232", + "contrastRatio": 3.33, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta прижата справа", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который тоже не заканчивается", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который не обрезается (multiline)", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#f5f5f7", + "contrastRatio": 3.13, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#f5f5f7", + "contrastRatio": 3.13, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta прижата справа", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который тоже не заканчивается", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который не обрезается (multiline)", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#323232", + "contrastRatio": 3.33, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#323232", + "contrastRatio": 3.33, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta прижата справа", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который тоже не заканчивается", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который не обрезается (multiline)", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#f5f5f7", + "contrastRatio": 3.13, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#f5f5f7", + "contrastRatio": 3.13, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta прижата справа", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#ffffff", + "bgColor": "#c0c0c0", + "contrastRatio": 1.81, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "button" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 1.81 (foreground color: #ffffff, background color: #c0c0c0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 1.81 (foreground color: #ffffff, background color: #c0c0c0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который тоже не заканчивается", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который не обрезается (multiline)", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#292929", + "contrastRatio": 3.78, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.78 (foreground color: #828282, background color: #292929, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#323232", + "contrastRatio": 3.33, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#828282", + "bgColor": "#323232", + "contrastRatio": 3.33, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta прижата справа", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.33 (foreground color: #828282, background color: #323232, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который тоже не заканчивается", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который не обрезается (multiline)", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#f5f5f7", + "contrastRatio": 3.13, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#f5f5f7", + "contrastRatio": 3.13, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta прижата справа", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-DESKTOP-sizeY-regular-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который тоже не заканчивается", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который не обрезается (multiline)", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#2c2d2e", + "contrastRatio": 3.11, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.11 (foreground color: #76787a, background color: #2c2d2e, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#343536", + "contrastRatio": 2.77, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42._Tappable__ripple_xr87o_56[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 2.77 (foreground color: #76787a, background color: #343536, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 2.77 (foreground color: #76787a, background color: #343536, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#76787a", + "bgColor": "#343536", + "contrastRatio": 2.77, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42._Tappable__ripple_xr87o_56[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 2.77 (foreground color: #76787a, background color: #343536, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta прижата справа", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 2.77 (foreground color: #76787a, background color: #343536, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Заголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который тоже не заканчивается", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок, который не обрезается (multiline)", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Есть подзаголовок", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#f5f5f7", + "contrastRatio": 3.13, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42._Tappable__ripple_xr87o_56[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#f5f5f7", + "contrastRatio": 3.13, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "._Tappable--hovered-background_xr87o_66 > ._Tappable__stateLayer_xr87o_42._Tappable__ripple_xr87o_56[aria-hidden=\"true\"]" + ] + }, + { + "html": "
", + "target": [ + "._ActionSheet__content-wrapper_131va_9" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Meta прижата справа", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.13 (foreground color: #818c99, background color: #f5f5f7, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#ffffff", + "bgColor": "#c0c0c0", + "contrastRatio": 1.81, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "button" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 1.81 (foreground color: #ffffff, background color: #c0c0c0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-ActionSheet-ActionSheet.e2e.tsx-ActionSheet-ViewWidth-MOBILE-sizeY-regular-ios-webkit-•-dark" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 1.81 (foreground color: #ffffff, background color: #c0c0c0, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#ffffff", + "bgColor": "#4bb34b", + "contrastRatio": 2.67, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Кто может оставлять записи на моей странице", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "SOHN — Conrad", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "12", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Плейлисты", + "target": [ + "components-Header-Header.e2e.tsx-Header-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Показать все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "4 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "64 фотографии", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Show more", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-7ba74-More.e2e.tsx-HorizontalCellShowMore-normal-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-a7716-wMore.e2e.tsx-HorizontalCellShowMore-small-size-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-a7716-wMore.e2e.tsx-HorizontalCellShowMore-small-size-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-a7716-wMore.e2e.tsx-HorizontalCellShowMore-small-size-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-a7716-wMore.e2e.tsx-HorizontalCellShowMore-small-size-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#447bba", + "bgColor": "#ffffff", + "contrastRatio": 4.38, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Все", + "target": [ + "components-HorizontalScroll-HorizontalCellShow-a7716-wMore.e2e.tsx-HorizontalCellShowMore-small-size-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.38 (foreground color: #447bba, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы ", + "target": [ + "components-InfoRow-InfoRow.e2e.tsx-InfoRow-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы ", + "target": [ + "components-InfoRow-InfoRow.e2e.tsx-InfoRow-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы ", + "target": [ + "components-InfoRow-InfoRow.e2e.tsx-InfoRow-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "10.5pt (14px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы ", + "target": [ + "components-InfoRow-InfoRow.e2e.tsx-InfoRow-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Санкт-Петербург, Россия", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы: Команда ВКонтакте", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Укажите место учёбы или работы", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Подробная информация", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Подробная информация", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Ячейка без иконки", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Санкт-Петербург, Россия", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "ВКонтакте начинался как сайт для выпускников вузов, а сейчас это огромная экосистема с безграничными возможностями и миллионами пользователей.", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Место работы: Команда ВКонтакте", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Укажите место учёбы или работы", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Подробная информация", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2d81e0", + "bgColor": "#ffffff", + "contrastRatio": 3.94, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Подробная информация", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.94 (foreground color: #2d81e0, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#6d7885", + "bgColor": "#ffffff", + "contrastRatio": 4.49, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Ячейка без иконки", + "target": [ + "components-MiniInfoCell-MiniInfoCell.e2e.tsx-MiniInfoCell-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 4.49 (foreground color: #6d7885, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-DESKTOP-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-DESKTOP-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-DESKTOP-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-DESKTOP-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-MOBILE-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-MOBILE-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-MOBILE-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#2688eb", + "bgColor": "#ffffff", + "contrastRatio": 3.61, + "fontSize": "12.8pt (17px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Готово", + "target": [ + "components-ModalPageHeader-ModalPageHeader.e2e.tsx-ModalPageHeader-ViewWidth-MOBILE-ios-only-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.61 (foreground color: #2688eb, background color: #ffffff, font size: 12.8pt (17px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Перейти на страницу 123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Перейти на страницу 123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Перейти на страницу 123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 11.3pt (15px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Перейти на страницу 123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-ios-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Перейти на страницу 123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-vkcom-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Перейти на страницу 123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-vkcom-firefox-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "9.8pt (13px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "Перейти на страницу 123", + "target": [ + "components-Pagination-Pagination.e2e.tsx-Pagination-vkcom-webkit-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 9.8pt (13px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#818c99", + "bgColor": "#ffffff", + "contrastRatio": 3.41, + "fontSize": "12.0pt (16px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "
", + "target": [ + "._AppRoot_s3u2p_1 > div" + ] + } + ], + "impact": "serious", + "message": "Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + } + ], + "all": [], + "none": [], + "impact": "serious", + "html": "The people you add as your friends will be displayed here", + "target": [ + "components-Placeholder-Placeholder.e2e.tsx-Placeholder-android-chromium-•-light" + ], + "failureSummary": "Fix any of the following:\n Element has insufficient color contrast of 3.41 (foreground color: #818c99, background color: #ffffff, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1" + }, + { + "any": [ + { + "id": "color-contrast", + "data": { + "fgColor": "#ffffff", + "bgColor": "#2688eb", + "contrastRatio": 3.61, + "fontSize": "11.3pt (15px)", + "fontWeight": "normal", + "messageKey": null, + "expectedContrastRatio": "4.5:1" + }, + "relatedNodes": [ + { + "html": "