prefers-color-scheme: darkFocus your efforts on these pages to make the biggest impact (combined scanner unique failures):
| Page | axe Unique | ALFA Unique | Equal Access Unique | AccessLint Unique | QualWeb | Total Unique | Page Title |
|---|---|---|---|---|---|---|---|
| View Page | 40 | 52 | 307 | 74 | 60 | 533 | Road trip en van entre amis au Pays basque |
| View Page | 1 | 48 | 370 | 55 | 47 | 521 | Vakantie in Frankrijk: tips, inspiratie en reisideeën │France.fr |
| View Page | 1 | 56 | 366 | 52 | 37 | 512 | Viaja a Francia y descubre sus maravillas - Explore France |
| View Page | 1 | 55 | 353 | 52 | 35 | 496 | France.fr: Utforska Frankrike och dess underverk - Explore France |
| View Page | 1 | 47 | 347 | 50 | 47 | 492 | France.fr: Explore a França e suas maravilhas - Explore France |
| View Page | 1 | 54 | 353 | 48 | 32 | 488 | France.fr: Udforsk Frankrig og dets vidundere - Explore France |
| View Page | 1 | 52 | 352 | 44 | 32 | 481 | France.fr : Explore la France et ses merveilles - Explore France |
| View Page | 1 | 52 | 344 | 44 | 32 | 473 | France.fr : Explore la France et ses merveilles - Explore France |
| View Page | 1 | 51 | 345 | 41 | 25 | 463 | France.fr: esplora la Francia e le sue meraviglie - Explore France |
| View Page | 13 | 54 | 294 | 48 | 49 | 458 | Week-end gourmand au Pays basque |
These ALFA accessibility issues appear most frequently across your pages:
| Rule | Pages Affected | Documentation |
|---|---|---|
| SIA-R111: Interactive elements have a sufficient target size | 97 of 100 | View Rule |
| SIA-R3: lang attribute has a valid language code | 97 of 100 | View Rule |
| SIA-R73: Text spacing can be adjusted without loss of content | 97 of 100 | View Rule |
| SIA-R66: Text has enhanced contrast with its background | 96 of 100 | View Rule |
| SIA-R87: First focusable element is a skip link | 89 of 100 | View Rule |
| SIA-R61 | 81 of 100 | View Rule |
| SIA-R17 | 61 of 100 | View Rule |
| SIA-R69: Text has sufficient contrast with its background | 29 of 100 | View Rule |
| SIA-R2: HTML elements have a valid lang attribute | 28 of 100 | View Rule |
| SIA-R68: Accessible name contains the visible label text | 23 of 100 | View Rule |
💡 Tip: Click on the rule documentation links to learn how to fix each issue.
These axe accessibility issues appear most frequently across your pages:
| Rule | Pages Affected | Documentation |
|---|---|---|
| color-contrast | 35 of 100 | View Rule |
| image-alt | 27 of 100 | View Rule |
| list | 15 of 100 | View Rule |
| heading-order | 13 of 100 | View Rule |
| link-in-text-block | 12 of 100 | View Rule |
| html-has-lang | 8 of 100 | View Rule |
| empty-heading | 6 of 100 | View Rule |
| button-name | 5 of 100 | View Rule |
| frame-title | 3 of 100 | View Rule |
| scrollable-region-focusable | 2 of 100 | View Rule |
💡 Tip: Click on the rule documentation links to learn how to fix each issue. Consider fixing the most common issues first for maximum impact.
🤖 Future Enhancement: This report will soon include AI-powered fix suggestions for authenticated GitHub users (opt-in only, no auto-run AI).
These HTML patterns cause the same accessibility errors across multiple pages. Fix the pattern once in your codebase to fix it everywhere!
``html
<span id="label_language-picker" class="label-m mb-3 display-block sr-only" data-v-b68278f0="">...</span>
XPath (use in browser DevTools):
`
/span[@id="label_language-picker"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/span[@id="label_language-picker"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 92 more page(s)
---
Pattern 2: Affects 97 page(s) - 97 occurrence(s)
Scanner: ALFA
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Issue: The line height of the paragraph is normal which will result in a line height of less than 1.5
HTML Pattern:
`html
<p class="AfHeader__id" data-v-d1aa9e45="">...</p>
`
XPath (use in browser DevTools):
`
/p[@class="AfHeader__id"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/p[@class="AfHeader__id"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 92 more page(s)
---
Pattern 3: Affects 96 page(s) - 192 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_nl" role="option" data-v-b68278f0="">Nederlands</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_nl"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_nl"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 91 more page(s)
---
Pattern 4: Affects 95 page(s) - 190 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_sv" role="option" data-v-b68278f0="">Svenska</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_sv"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_sv"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 90 more page(s)
---
Pattern 5: Affects 95 page(s) - 190 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_zh-Hans" role="option" data-v-b68278f0="">简体中文</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_zh-Hans"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_zh-Hans"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 90 more page(s)
---
Pattern 6: Affects 95 page(s) - 190 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_ko" role="option" data-v-b68278f0="">한국어</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_ko"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_ko"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ru/search
- https://france.fr/zh-Hans/search
- ...and 90 more page(s)
---
Pattern 7: Affects 94 page(s) - 188 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_pt" role="option" data-v-b68278f0="">Português</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_pt"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_pt"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 89 more page(s)
---
Pattern 8: Affects 93 page(s) - 186 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_ja" role="option" data-v-b68278f0="">日本語</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_ja"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_ja"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- https://france.fr/zh-Hans/search
- ...and 88 more page(s)
---
Pattern 9: Affects 91 page(s) - 91 occurrence(s)
Scanner: ALFA
Rule: SIA-R111: Interactive elements have a sufficient target size
Issue: Target has insufficient size
HTML Pattern:
`html
<button id="search-btn" class="AfHeader__link label-m" aria-controls="header-search" aria-expanded="false" data-v-d1aa9e45="">...</button>
`
XPath (use in browser DevTools):
`
/button[@id="search-btn"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/button[@id="search-btn"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 86 more page(s)
---
Pattern 10: Affects 88 page(s) - 176 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_ar" role="option" data-v-b68278f0="">العربية</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_ar"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_ar"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 83 more page(s)
---
Pattern 11: Affects 87 page(s) - 174 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_en" role="option" data-v-b68278f0="">English</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_en"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_en"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- https://france.fr/zh-Hans/search
- ...and 82 more page(s)
---
Pattern 12: Affects 87 page(s) - 174 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_cs" role="option" data-v-b68278f0="">Čeština</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_cs"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_cs"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 82 more page(s)
---
Pattern 13: Affects 87 page(s) - 174 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_da" role="option" data-v-b68278f0="">Dansk</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_da"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_da"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 82 more page(s)
---
Pattern 14: Affects 87 page(s) - 174 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_de" role="option" data-v-b68278f0="">Deutsch</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_de"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_de"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 82 more page(s)
---
Pattern 15: Affects 87 page(s) - 174 occurrence(s)
Scanner: ALFA
Rule: SIA-R3: lang attribute has a valid language code
Issue: The element does not have a unique ID
HTML Pattern:
`html
<li class="label-m py-2 px-7" aria-selected="false" id="language-picker_es" role="option" data-v-b68278f0="">Español</li>
`
XPath (use in browser DevTools):
`
/li[@id="language-picker_es"]
`
How to Replicate:
1. Open any affected page in your browser
2. Press F12 to open DevTools
3. Go to Console tab
4. Run:
$x('/li[@id="language-picker_es"]')
5. The element will be highlighted
Affected Pages:
- https://france.fr/
- https://france.fr/en/search
- https://france.fr/ja/search
- https://france.fr/ko/search
- https://france.fr/ru/search
- ...and 82 more page(s)
---
💡 Pro Tip: These patterns likely come from shared components or templates in your codebase. Fix them in the component/template source, and the fix will propagate to all affected pages.
📊 Detailed Results
Complete scan results for all tested pages:
Submitted URL Final URL Status HTTP Redirected Time (ms) axe Unique ALFA Unique Equal Access Unique AccessLint Unique Duplicates Notes
https://france.fr/ https://www.france.fr/fr/ OK 200 yes 24922 1 52 352 44 253 France.fr : Explore la France et ses merveilles - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, frame_src_valid, frame_title_exists, heading_content_exists, html_lang_exists, html_skipnav_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ar/search https://www.france.fr/ar/search FAIL 404 yes 6164 4 3 4 4 1 404 Not Found
ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, SIA-R87 (First focusable element is a skip link)
axe failed rules: html-has-lang, landmark-one-main, region
Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, html_lang_exists, skip_main_exists
AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang
https://france.fr/en/search https://www.france.fr/en/search/ OK 200 yes 21578 0 30 249 17 41 Search - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria
https://france.fr/ja/search https://www.france.fr/ja/search/ OK 200 yes 36160 0 34 218 18 41 検索 - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ko/search https://www.france.fr/ko/search/ OK 200 yes 19823 0 35 201 18 30 검색 - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ru/search https://www.france.fr/ru/search/ OK 200 yes 20355 0 34 152 16 31 Поиск - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/zh-Hans/search https://www.france.fr/zh-Hans/search/ OK 200 yes 15063 0 34 47 2 24 搜索 - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ar/article/palace-6-things-you-can-only-find-at-the-plaza-athenee https://www.france.fr/ar/article/palace-6-things-you-can-only-find-at-the-plaza-athenee/ OK 200 yes 24366 7 46 221 27 149 الفندق الفخم: 6 أمور متميّزة للاكتشاف في فندق "بلازا أتينيه" Plaza Athénée - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, text-alternatives/img-alt
https://france.fr/da/artikel/de-parisiske-konditorer-der-genopfinder-kagen https://www.france.fr/da/artikel/de-parisiske-konditorer-der-genopfinder-kagen/ OK 200 yes 19371 7 46 294 33 185 De parisiske konditorer der genopfinder kagen - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/da/artikel/Find-ro-naturen-hvorfor-ikke-%C3%A5bne-dine-chakraer-Alperne-Frankrig https://www.france.fr/da/artikel/Find-ro-naturen-hvorfor-ikke-%c3%a5bne-dine-chakraer-Alperne-Frankrig/ OK 200 yes 26726 8 47 279 36 106 Find ro i alperne med meditation, vandring og faste - France.fr
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, frame-title, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, frame_title_exists, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/da/artikel/genfind-roen-8-oplevelser-i-den-franske-natur https://www.france.fr/da/artikel/genfind-roen-8-oplevelser-i-den-franske-natur/ OK 200 yes 27496 13 47 294 41 206 Genfind roen: her er 8 oplevelser i den franske natur - France.fr
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/da/artikel/Leonardo-da-Vinci-sk%C3%B8re-opfindelser-Clos-Luc%C3%A9-Loiredalen https://www.france.fr/da/artikel/Leonardo-da-Vinci-sk%c3%b8re-opfindelser-Clos-Luc%c3%a9-Loiredalen/ OK 200 yes 29209 9 46 290 37 156 Oplev Leonardo da Vincis skøre opfindelser i Loiredalen - France.fr
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/de/artikel/6-gestalter-erfinden-die-provence-neu https://www.france.fr/de/artikel/6-gestalter-erfinden-die-provence-neu/ OK 200 yes 18920 8 46 288 34 179 6 Gestalter, die die Provence neu erfinden - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/de/artikel/das-beruhmteste-herz-der-welt-befindet-sich-in-neukaledonien https://www.france.fr/de/artikel/das-beruhmteste-herz-der-welt-befindet-sich-in-neukaledonien/ OK 200 yes 19716 8 49 271 33 108 Das berühmte Herz von Neukaledonien
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, frame-title, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, frame_title_exists, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/de/artikel/die-genialen-erfindungen-leonardo-da-vincis-im-clos-luce https://www.france.fr/de/artikel/die-genialen-erfindungen-leonardo-da-vincis-im-clos-luce/ OK 200 yes 25882 14 45 287 27 222 Die genialen Erfindungen Leonardo da Vincis im Clos Lucé
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, text-alternatives/img-alt
https://france.fr/de/artikel/die-olympischen-spiele-2024-werden-paris-stattfinden https://www.france.fr/de/artikel/die-olympischen-spiele-2024-werden-paris-stattfinden/ OK 200 yes 24396 7 46 279 33 159 Die Olympischen Spiele 2024 werden in Paris stattfinden
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/en/article/5-minutes-to-find-out-everything-you-ever-wanted-to-know-about-burgundy https://www.france.fr/en/article/5-minutes-to-find-out-everything-you-ever-wanted-to-know-about-burgundy/ OK 200 yes 26819 14 41 281 39 175 Burgundy wines guide: grand crus, wineries, vineyards and climate
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_sensory_misuse
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, text-alternatives/img-alt
https://france.fr/en/article/palace-6-things-you-can-only-find-at-the-plaza-athenee https://www.france.fr/en/article/palace-6-things-you-can-only-find-at-the-plaza-athenee/ OK 200 yes 23329 7 40 283 32 152 The Hotel Palace Plaza Athenee in Paris, fashion and architecture
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_visible, list_markup_review, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_sensory_misuse
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, text-alternatives/img-alt
https://france.fr/en/article/shopping-nice-four-leads-finding-everything-your-heart-desires https://www.france.fr/en/article/shopping-nice-four-leads-finding-everything-your-heart-desires/ OK 200 yes 23968 7 42 280 34 163 Shopping in Nice: Four leads to finding everything your heart desires
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, heading-order, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_visible, list_markup_review, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly, text_sensory_misuse
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, navigable/heading-order, text-alternatives/img-alt
https://france.fr/ar/article/balade-de-chateau-en-chateau-au-pays-basque https://www.france.fr/ar/article/balade-de-chateau-en-chateau-au-pays-basque/ OK 200 yes 26011 14 46 217 40 167 جولة بين قصور بلاد الباسك - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/ar/article/cote-dazur-plus-beaux-villages-arriere-pays-nicois https://www.france.fr/ar/article/cote-dazur-plus-beaux-villages-arriere-pays-nicois/ OK 200 yes 48196 55 54 228 78 126 مغامرات في أعالي قرى كوت دازور - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, frame-title, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, frame_title_exists, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/ar/article/maisons-reinventent-gout-pays-basque https://www.france.fr/ar/article/maisons-reinventent-gout-pays-basque/ OK 200 yes 26618 4 46 212 30 138 عناوين تعيد ابتكار نكهات بلاد الباسك - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/ar/article/service-d%C3%A9taxe-GL https://www.france.fr/ar/article/service-d%c3%a9taxe-GL/ OK 200 yes 25360 7 45 211 34 124 التسوق المعفى من الضريبة في متجر "غاليري لافاييت" - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/ar/campaign/services-galeries-lafayette https://www.france.fr/ar/campaign/services-galeries-lafayette/ OK 200 yes 20620 0 37 183 18 46 خدمات متجر "غاليري لافاييت" المخصصة - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ar/destination/biarritz-pays-basque https://www.france.fr/ar/destination/biarritz-pays-basque/ OK 200 yes 20890 0 40 188 18 37 بياريتز -بلاد الباسك - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ar/destination/pays-de-la-loire https://www.france.fr/ar/destination/pays-de-la-loire/ OK 200 yes 20543 0 39 186 18 31 بلاد اللوار - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/cs/clanek/co-delat-v-pays-de-la-loire https://www.france.fr/cs/clanek/co-delat-v-pays-de-la-loire/ OK 200 yes 48726 18 44 256 41 190 Navštivte oblast Pays de la Loire, mezi údolím Loiry a pobřežím Atlantiku
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/cs/destinace/pays-de-la-loire https://www.france.fr/cs/destinace/pays-de-la-loire/ OK 200 yes 25155 0 42 223 16 53 Naštivte Pays de la Loire
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/da/artikel/4-udflugter-i-naturen-i-regionen-pays-de-la-loire https://www.france.fr/da/artikel/4-udflugter-i-naturen-i-regionen-pays-de-la-loire/ OK 200 yes 48041 2 47 297 33 157 4 udflugter i naturen i den atlantiske loiredal - France.fr
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, html-has-lang
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, list_markup_review, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/da/artikel/Bordd%C3%A6kning-service-Lorraine-krystalglas https://www.france.fr/da/artikel/Bordd%c3%a6kning-service-Lorraine-krystalglas/ OK 200 yes 27470 15 47 299 43 171 Dæk et smukt bord med det bedste service fra Lorraine - France.fr
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, frame_title_exists, heading_content_exists, html_lang_exists, html_skipnav_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/da/destination/biarritz-pays-basque https://www.france.fr/da/destination/biarritz-pays-basque/ OK 200 yes 54386 0 46 270 18 100 Besøg Biarritz og Baskerlandet
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/da/destination/pays-de-la-loire https://www.france.fr/da/destination/pays-de-la-loire/ OK 200 yes 26945 0 45 266 18 56 Besøg Den atlantiske Loiredal
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/en/article/biarritz-pays-basque https://www.france.fr/en/article/biarritz-pays-basque/ OK 200 yes 20031 2 39 280 27 140 Biarritz Pays Basque
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_sensory_misuse
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, text-alternatives/img-alt
https://france.fr/en/article/charming-villages-pays-basque https://www.france.fr/en/article/charming-villages-pays-basque/ OK 200 yes 17698 5 40 280 30 147 Charming villages in Pays Basque
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_sensory_misuse
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, text-alternatives/img-alt
https://france.fr/fr/destination/biarritz-pays-basque https://www.france.fr/fr/destination/biarritz-pays-basque/ OK 200 yes 21174 2 50 288 41 164 Visiter Biarritz et le Pays basque
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/fr/destination/pays-de-la-loire https://france.fr/fr/destination/pays-de-la-loire FAIL - no 59999 0 0 0 0 0 URL scan exceeded 60s timeout
https://france.fr/fr/itineraire/parcours-gourmand-pays-basque https://www.france.fr/fr/itineraire/parcours-gourmand-pays-basque/ OK 200 yes 32633 13 54 294 48 187 Week-end gourmand au Pays basque
ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order, image-alt, link-in-text-block, link-name
Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order, navigable/link-name, text-alternatives/img-alt
https://france.fr/fr/itineraire/pays-basque-en-van-entre-amis https://www.france.fr/fr/itineraire/pays-basque-en-van-entre-amis/ OK 200 yes 30677 40 52 307 74 258 Road trip en van entre amis au Pays basque
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order, text-alternatives/img-alt
https://france.fr/it/articolo/5-esempi-di-patrimonio-eclettico-nei-pays-de-la-loire https://www.france.fr/it/articolo/5-esempi-di-patrimonio-eclettico-nei-pays-de-la-loire/ OK 200 yes 25271 7 44 286 33 180 5 uscite culturali da non perdere nel Pays de la Loire - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/it/articolo/pays-oc-i-vigneti https://www.france.fr/it/articolo/pays-oc-i-vigneti/ OK 200 yes 23124 4 44 283 30 137 Pays d'Oc: i vigneti - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, heading-order, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, heading_markup_misuse, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order, text-alternatives/img-alt
https://france.fr/it/articolo/sui-passi-di-moliere-pezenas-nel-pays-oc https://www.france.fr/it/articolo/sui-passi-di-moliere-pezenas-nel-pays-oc/ OK 200 yes 22638 4 43 278 30 143 Sui passi di Molière a Pézenas nel Pays d'Oc - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, heading_markup_misuse, img_alt_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/ja/destination/biarritz-pays-basque https://www.france.fr/ja/destination/biarritz-pays-basque/ OK 200 yes 30042 0 45 233 18 101 ビアリッツ - バスク地方 - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R83 (Text can be resized to 200% without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ja/destination/pays-de-la-loire https://www.france.fr/ja/destination/pays-de-la-loire/ OK 200 yes 24057 0 46 230 18 53 ペイ・ド・ラ・ロワール - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R83 (Text can be resized to 200% without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ko/destination/pay-de-la-loire https://www.france.fr/ko/destination/pay-de-la-loire/ OK 200 yes 24913 0 42 206 18 43 페이 드 라 루아르 - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_label_valid, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/nb/artikkel/biarritz-pays-basque-hva-du-kan-se-gjore https://www.france.fr/nb/artikkel/biarritz-pays-basque-hva-du-kan-se-gjore/ FAIL 500 yes 16046 2 27 31 2 16
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R4 (Page has a descriptive title), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R83 (Text can be resized to 200% without loss of content)
axe failed rules: color-contrast, html-has-lang
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_visible, html_lang_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: labels-and-names/duplicate-id-aria, readable/html-has-lang
https://france.fr/pt/artigo/dois-reporteres-brasileiros-farao-a-cobertura-dos-gay-games-em-paris-fique https://www.france.fr/pt/artigo/dois-reporteres-brasileiros-farao-a-cobertura-dos-gay-games-em-paris-fique/ OK 200 yes 22235 5 43 269 31 135 Dois repórteres brasileiros farão a cobertura dos Gay Games em Paris, fique ligado! - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, empty-heading, image-alt, link-in-text-block
Equal Access failed rules: aria_accessiblename_exists, aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/empty-heading, text-alternatives/img-alt
https://france.fr/pt/artigo/fazer-ver-pays-loire https://www.france.fr/pt/artigo/fazer-ver-pays-loire/ OK 200 yes 25889 27 47 272 53 223 Quais atividades fazer no Pays de la Loire?
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, image-alt, link-in-text-block
Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, img_alt_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, text-alternatives/img-alt
https://france.fr/sv/destination/biarritz-pays-basque https://www.france.fr/sv/destination/biarritz-pays-basque/ OK 200 yes 19221 0 45 270 18 96 Besök Biarritz och Baskien
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ar https://www.france.fr/ar/ OK 200 yes 37995 3 49 242 30 248 استلهموا - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list, presentation-role-conflict
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/cs https://www.france.fr/cs/ OK 200 yes 51645 1 47 293 36 293 France.fr: Objevte Francii a její zázraky - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/da https://www.france.fr/da/ OK 200 yes 24329 1 54 353 48 307 France.fr: Udforsk Frankrig og dets vidundere - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/de https://www.france.fr/de/ OK 200 yes 22371 1 50 334 40 245 France.fr: Entdecken Sie Frankreich und seine Wunder - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/en https://www.france.fr/en/ OK 200 yes 23073 1 46 325 37 316 France.fr : Explore France and its wonders - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria
https://france.fr/es https://www.france.fr/es/ OK 200 yes 23497 1 56 366 52 263 Viaja a Francia y descubre sus maravillas - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/fr https://www.france.fr/fr/ OK 200 yes 23965 1 52 344 44 253 France.fr : Explore la France et ses merveilles - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, frame_src_valid, frame_title_exists, heading_content_exists, html_lang_exists, html_skipnav_exists, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/it https://www.france.fr/it/ OK 200 yes 22608 1 51 345 41 237 France.fr: esplora la Francia e le sue meraviglie - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ja https://www.france.fr/ja/ OK 200 yes 23571 1 51 318 45 301 フランス旅行の最新情報が満載 | フランス観光開発機構公式サイト France.fr | Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ko https://france.fr/ko FAIL - no 59999 0 0 0 0 0 URL scan exceeded 60s timeout
https://france.fr/nb https://www.france.fr/nb/ FAIL 404 yes 14615 2 27 31 2 16
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R4 (Page has a descriptive title), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R83 (Text can be resized to 200% without loss of content)
axe failed rules: color-contrast, html-has-lang
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_visible, html_lang_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: labels-and-names/duplicate-id-aria, readable/html-has-lang
https://france.fr/nl https://www.france.fr/nl/ OK 200 yes 25849 1 48 370 55 395 Vakantie in Frankrijk: tips, inspiratie en reisideeën │France.fr
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/pt https://www.france.fr/pt/ OK 200 yes 49010 1 47 347 50 380 France.fr: Explore a França e suas maravilhas - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/ru https://www.france.fr/ru/ OK 200 yes 22358 1 42 211 36 307 France.fr: Исследуйте Францию и ее чудеса - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/sv https://www.france.fr/sv/ OK 200 yes 24068 1 55 353 52 313 France.fr: Utforska Frankrike och dess underverk - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/zh-Hans https://www.france.fr/zh-Hans/ OK 200 yes 49288 1 44 92 12 278 法国旅游发展署
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: list
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/cs/akce https://www.france.fr/cs/akce/ FAIL 404 yes 21345 2 29 202 16 36
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R4 (Page has a descriptive title), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R83 (Text can be resized to 200% without loss of content)
axe failed rules: color-contrast, html-has-lang
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, html_lang_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, readable/html-has-lang
https://france.fr/cs/aktivity https://www.france.fr/cs/aktivity/ OK 200 yes 29189 0 40 250 26 188 Aktivity a tipy, co podniknout ve Francii
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/cs/archivy https://www.france.fr/cs/archivy/ OK 200 yes 20289 1 38 210 17 92 Všechny články - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order
https://france.fr/cs/destinace https://www.france.fr/cs/destinace/ OK 200 yes 28120 0 39 256 37 308 Kterou oblast Francie si vyberete pro svoji dovolenou?
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/cs/mapa https://www.france.fr/cs/mapa/ OK 200 yes 22638 2 37 239 17 44 Mapa - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R87 (First focusable element is a skip link)
axe failed rules: button-name, empty-heading
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_keyboard_handler_exists, aria_role_redundant, aria_role_valid, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, navigable/empty-heading, navigable/page-has-heading-one
https://france.fr/cs/nove-clanky https://www.france.fr/cs/nove-clanky/ FAIL 404 yes 18907 2 29 202 16 36
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R4 (Page has a descriptive title), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R83 (Text can be resized to 200% without loss of content)
axe failed rules: color-contrast, html-has-lang
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, html_lang_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, readable/html-has-lang
https://france.fr/cs/okruh https://www.france.fr/cs/okruh/ OK 200 yes 25412 0 39 222 16 77 Road trips ve Francii : tipy na okruhy trasy
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/da/aktiviteter https://www.france.fr/da/aktiviteter/ OK 200 yes 19537 0 41 294 28 190 Hvilke aktiviteter skal man vælge?
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/de/aktivitaeten https://www.france.fr/de/aktivitaeten/ OK 200 yes 32297 0 41 288 28 195 Was kann man unternehmen? Aktivitäten und Ausgehen in Frankreich
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/de/archiv https://www.france.fr/de/archiv/ OK 200 yes 21873 1 39 253 19 95 Alle Artikel - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order
https://france.fr/de/karte https://www.france.fr/de/karte/ OK 200 yes 20855 2 40 289 20 52 Karte - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R87 (First focusable element is a skip link)
axe failed rules: button-name, empty-heading
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_keyboard_handler_exists, aria_role_redundant, aria_role_valid, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/empty-heading, navigable/page-has-heading-one
https://france.fr/de/nachhaltiges-reisen https://www.france.fr/de/nachhaltiges-reisen/ OK 200 yes 29917 2 44 286 29 170 Slow Tourismus in Frankreich: Tipps und Ideen für Ausflüge
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)
axe failed rules: color-contrast, scrollable-region-focusable
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_label_valid, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, keyboard-accessible/scrollable-region, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/de/neue-artikel https://www.france.fr/de/neue-artikel/ FAIL 404 yes 19048 2 31 240 18 43
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R4 (Page has a descriptive title), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R83 (Text can be resized to 200% without loss of content)
axe failed rules: color-contrast, html-has-lang
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, html_lang_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, readable/html-has-lang
https://france.fr/en/activities https://www.france.fr/en/activities/ OK 200 yes 18999 0 36 288 27 192 Activities - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria
https://france.fr/en/archives https://www.france.fr/en/archives/ OK 200 yes 16629 1 34 248 18 86 All articles - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, navigable/heading-order
https://france.fr/en/durable-travel https://www.france.fr/en/durable-travel/ OK 200 yes 19082 2 42 274 23 143 Travel gems in France to take you off the beaten track! - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74
axe failed rules: color-contrast, scrollable-region-focusable
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_label_valid, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, keyboard-accessible/scrollable-region, labels-and-names/duplicate-id-aria
https://france.fr/es/actividades https://www.france.fr/es/actividades/ OK 200 yes 32299 0 41 289 28 169 ¿Qué hacer? Actividades, paseos y excursiones en Francia
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/es/archivos https://www.france.fr/es/archivos/ OK 200 yes 28294 1 39 259 18 96 Todos los artículos - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, navigable/heading-order
https://france.fr/es/buscar https://www.france.fr/es/buscar/ OK 200 yes 14996 0 35 266 18 39 Buscar - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, frame_src_valid, frame_title_exists, html_lang_exists, html_skipnav_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/es/destino https://www.france.fr/es/destino/ OK 200 yes 20814 0 41 305 39 313 ¿Adónde ir? Qué destino elegir para tu estancia en Francia
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/es/evento https://www.france.fr/es/evento/ OK 200 yes 25920 0 41 286 28 198 Eventos en París y en toda Francia
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/es/info-practica https://www.france.fr/es/info-practica/ OK 200 yes 19581 1 37 293 36 243 Informaciones prácticas: cómo aprovechar al máximo tu viaje a Francia
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order
https://france.fr/es/itinerario https://www.france.fr/es/itinerario/ OK 200 yes 56123 0 40 270 18 79 Itinerarios para viajar por Francia
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/es/mapa https://www.france.fr/es/mapa/ OK 200 yes 24227 2 39 289 20 49 Mapa - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R87 (First focusable element is a skip link)
axe failed rules: button-name, empty-heading
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_keyboard_handler_exists, aria_role_redundant, aria_role_valid, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/empty-heading, navigable/page-has-heading-one
https://france.fr/es/nuevos-articulos https://www.france.fr/es/nuevos-articulos/ FAIL 404 yes 18990 2 31 246 18 41
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R4 (Page has a descriptive title), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R83 (Text can be resized to 200% without loss of content)
axe failed rules: color-contrast, html-has-lang
Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, html_lang_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, readable/html-has-lang
https://france.fr/fr/activites https://www.france.fr/fr/activites/ OK 200 yes 20486 0 41 289 28 196 Que faire ? Activités et sorties en France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/fr/archives https://www.france.fr/fr/archives/ OK 200 yes 21354 1 38 253 19 87 Tous les articles - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order
https://france.fr/fr/articles-recents https://www.france.fr/fr/articles-recents/ OK 200 yes 24269 1 40 252 19 102 Articles récents
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order
https://france.fr/fr/carte https://www.france.fr/fr/carte/ OK 200 yes 24543 2 39 285 20 55 Carte - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R87 (First focusable element is a skip link)
axe failed rules: button-name, empty-heading
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_keyboard_handler_exists, aria_role_redundant, aria_role_valid, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/empty-heading, navigable/page-has-heading-one
https://france.fr/fr/evenement https://www.france.fr/fr/evenement/ OK 200 yes 18309 0 41 286 28 192 Evènements à Paris et partout en France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/it/archivi https://www.france.fr/it/archivi/ OK 200 yes 21466 1 38 256 19 55 Tutti gli articoli - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order
https://france.fr/it/attivita https://www.france.fr/it/attivita/ OK 200 yes 19937 0 41 292 28 182 Cose da fare Attività e gite in Francia
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/it/cartina https://www.france.fr/it/cartina/ OK 200 yes 35714 2 39 293 20 49 Mappa - Explore France
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R87 (First focusable element is a skip link)
axe failed rules: button-name, empty-heading
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_keyboard_handler_exists, aria_role_redundant, aria_role_valid, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_after, input_label_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/empty-heading, navigable/page-has-heading-one
https://france.fr/it/destinazione https://www.france.fr/it/destinazione/ OK 200 yes 28446 0 41 303 39 313 Dove andare? Quale destinazione scegliere per il vostro soggiorno in Francia?
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/it/evento https://www.france.fr/it/evento/ OK 200 yes 31073 0 41 284 34 286 Eventi a Parigi e in tutta la Francia
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region
https://france.fr/it/info-pratiche https://www.france.fr/it/info-pratiche/ OK 200 yes 19303 1 37 271 26 224 Informazioni pratiche: come sfruttare al meglio il vostro viaggio in Francia?
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)
axe failed rules: heading-order
Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, heading_content_exists, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient
AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, labels-and-names/duplicate-id-aria, landmarks/region, navigable/heading-order
Detailed Failure Information (ALFA)
https://france.fr/
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
XPath: /button[@class="AfButton AfButton--primary AfButton--small AfButton--red label-s"]
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--white label-s"]
Failure 3:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 5:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
... and 6 more failures for this rule
Rule: SIA-R17
Failure 1:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@class="AfCarousel-slide AfCarousel-slide--next"]
Failure 2:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@class="AfCarousel-slide"]
Failure 3:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@id="item-a1f149b9-651a-4934-8c44-e6357b964780-2"]
Failure 4:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@id="item-a1f149b9-651a-4934-8c44-e6357b964780-3"]
Failure 5:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@id="item-a1f149b9-651a-4934-8c44-e6357b964780-4"]
... and 2 more failures for this rule
Rule: SIA-R3: lang attribute has a valid language code
Failure 1:
- Message: The element does not have a unique ID
- HTML:
...
XPath: /span[@id="label_language-picker"]
Failure 2:
- Message: The element does not have a unique ID
- HTML:
XPath: /ul[@id="language-picker"]
Failure 3:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_fr"]
Failure 4:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_en"]
Failure 5:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_cs"]
... and 11 more failures for this rule
Rule: SIA-R61
Failure 1:
- Message: The document does not start with a level 1 heading
Rule: SIA-R66: Text has enhanced contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.8:1 which is below the required contrast of 7:1
Rule: SIA-R68: Accessible name contains the visible label text
Failure 1:
- Message: The element owns no elements as required by its semantic role
- HTML:
XPath: /ul[@class="AfFranceMap__destinations"]
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Failure 1:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Your language (English) does not match the languag...
XPath: /p[@class="paragraph-m"]
Failure 2:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfAlert__cta"]
Failure 3:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfHeader__id"]
Failure 4:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="mt-4"]
Failure 5:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: Vous souhaitez visiter la France mais êtes en manq...
XPath: /p[@class="paragraph-l"]
... and 8 more failures for this rule
Rule: SIA-R74
Failure 1:
- Message: The font size is specified using an absolute unit
- HTML:
Visiter
XPath: /p[@class="AfSectionIcons__watermark color-blue text-watermark"]
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The first tabbable element in the document is not a semantic link
https://france.fr/ar/search
Rule: SIA-R4: Page has a descriptive title
Failure 1:
- Message: The
lang attribute is either missing, empty, or only whitespace
HTML: ...
XPath: /html
Rule: SIA-R70
Failure 1:
- Message: The document contains deprecated elements
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The document has no tabbable descendants
https://france.fr/en/search
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 3:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--gold label-s"]
Failure 5:
- Message: Target has insufficient size
- HTML:
Home
XPath: /a[@class="AfBreadcrumbs__link"]
... and 3 more failures for this rule
Rule: SIA-R3: lang attribute has a valid language code
Failure 1:
- Message: The element does not have a unique ID
- HTML:
...
XPath: /span[@id="label_language-picker"]
Failure 2:
- Message: The element does not have a unique ID
- HTML:
XPath: /ul[@id="language-picker"]
Failure 3:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_fr"]
Failure 4:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_en"]
Failure 5:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_cs"]
... and 11 more failures for this rule
Rule: SIA-R68: Accessible name contains the visible label text
Failure 1:
- Message: The element owns no elements as required by its semantic role
- HTML:
XPath: /ul[@class="AfFilterInline__list"]
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Failure 1:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfHeader__id"]
Failure 2:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Learn more
XPath: /p[@class="heading-6 mb-5"]
Failure 3:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: Connect with us on all our platforms Explore Franc...
XPath: /p[@class="text-medium"]
Failure 4:
- Message: The line height of the paragraph is less than 1.5
- HTML:
XPath: /p[@class="heading-6 AfFollow__newsletter_text"]
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The first tabbable element in the document is not a semantic link
https://france.fr/ja/search
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
XPath: /button[@class="AfButton AfButton--primary AfButton--small AfButton--red label-s"]
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--white label-s"]
Failure 3:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 5:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
... and 3 more failures for this rule
Rule: SIA-R3: lang attribute has a valid language code
Failure 1:
- Message: The element does not have a unique ID
- HTML:
...
XPath: /span[@id="label_language-picker"]
Failure 2:
- Message: The element does not have a unique ID
- HTML:
XPath: /ul[@id="language-picker"]
Failure 3:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_fr"]
Failure 4:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_en"]
Failure 5:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_cs"]
... and 11 more failures for this rule
Rule: SIA-R61
Failure 1:
- Message: The document does not start with a level 1 heading
Rule: SIA-R66: Text has enhanced contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.8:1 which is below the required contrast of 7:1
Rule: SIA-R68: Accessible name contains the visible label text
Failure 1:
- Message: The element owns no elements as required by its semantic role
- HTML:
XPath: /ul[@class="AfFilterInline__list"]
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Failure 1:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Your language (English) does not match the languag...
XPath: /p[@class="paragraph-m"]
Failure 2:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfAlert__cta"]
Failure 3:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfHeader__id"]
Failure 4:
- Message: The line height of the paragraph is less than 1.5
- HTML:
もっと知る
XPath: /p[@class="heading-6 mb-5"]
Failure 5:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: Explore FranceのSNSをご覧ください
XPath: /p[@class="text-medium"]
... and 1 more failures for this rule
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The first tabbable element in the document is not a semantic link
https://france.fr/ko/search
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
XPath: /button[@class="AfButton AfButton--primary AfButton--small AfButton--red label-s"]
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--white label-s"]
Failure 3:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 5:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
... and 4 more failures for this rule
Rule: SIA-R3: lang attribute has a valid language code
Failure 1:
- Message: The element does not have a unique ID
- HTML:
...
XPath: /span[@id="label_language-picker"]
Failure 2:
- Message: The element does not have a unique ID
- HTML:
XPath: /ul[@id="language-picker"]
Failure 3:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_fr"]
Failure 4:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_en"]
Failure 5:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_cs"]
... and 11 more failures for this rule
Rule: SIA-R61
Failure 1:
- Message: The document does not start with a level 1 heading
Rule: SIA-R66: Text has enhanced contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.8:1 which is below the required contrast of 7:1
Rule: SIA-R68: Accessible name contains the visible label text
Failure 1:
- Message: The element owns no elements as required by its semantic role
- HTML:
XPath: /ul[@class="AfFilterInline__list"]
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Failure 1:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Your language (English) does not match the languag...
XPath: /p[@class="paragraph-m"]
Failure 2:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfAlert__cta"]
Failure 3:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfHeader__id"]
Failure 4:
- Message: The line height of the paragraph is less than 1.5
- HTML:
더 알아보기
XPath: /p[@class="heading-6 mb-5"]
Failure 5:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: Explore France 소셜미디어를 팔로우하세요!
XPath: /p[@class="text-medium"]
... and 1 more failures for this rule
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The first tabbable element in the document is not a semantic link
https://france.fr/ru/search
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
XPath: /button[@class="AfButton AfButton--primary AfButton--small AfButton--red label-s"]
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--white label-s"]
Failure 3:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 5:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
... and 4 more failures for this rule
Rule: SIA-R3: lang attribute has a valid language code
Failure 1:
- Message: The element does not have a unique ID
- HTML:
...
XPath: /span[@id="label_language-picker"]
Failure 2:
- Message: The element does not have a unique ID
- HTML:
XPath: /ul[@id="language-picker"]
Failure 3:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_fr"]
Failure 4:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_en"]
Failure 5:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_cs"]
... and 11 more failures for this rule
Rule: SIA-R61
Failure 1:
- Message: The document does not start with a level 1 heading
Rule: SIA-R66: Text has enhanced contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.8:1 which is below the required contrast of 7:1
Rule: SIA-R68: Accessible name contains the visible label text
Failure 1:
- Message: The element owns no elements as required by its semantic role
- HTML:
XPath: /ul[@class="AfFilterInline__list"]
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Failure 1:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Your language (English) does not match the languag...
XPath: /p[@class="paragraph-m"]
Failure 2:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfAlert__cta"]
Failure 3:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfHeader__id"]
Failure 4:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Узнать больше
XPath: /p[@class="heading-6 mb-5"]
Failure 5:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: Подписывайтесь на Explore France в соцсетях
XPath: /p[@class="text-medium"]
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The first tabbable element in the document is not a semantic link
https://france.fr/zh-Hans/search
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
XPath: /button[@class="AfButton AfButton--primary AfButton--small AfButton--red label-s"]
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--white label-s"]
Failure 3:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 5:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
... and 3 more failures for this rule
Rule: SIA-R3: lang attribute has a valid language code
Failure 1:
- Message: The element does not have a unique ID
- HTML:
...
XPath: /span[@id="label_language-picker"]
Failure 2:
- Message: The element does not have a unique ID
- HTML:
XPath: /ul[@id="language-picker"]
Failure 3:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_fr"]
Failure 4:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_en"]
Failure 5:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_cs"]
... and 11 more failures for this rule
Rule: SIA-R61
Failure 1:
- Message: The document does not start with a level 1 heading
Rule: SIA-R66: Text has enhanced contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.8:1 which is below the required contrast of 7:1
Rule: SIA-R68: Accessible name contains the visible label text
Failure 1:
- Message: The element owns no elements as required by its semantic role
- HTML:
XPath: /ul[@class="AfNavigation__list"]
Failure 2:
- Message: The element owns no elements as required by its semantic role
- HTML:
XPath: /ul[@class="AfFilterInline__list"]
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Failure 1:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Your language (English) does not match the languag...
XPath: /p[@class="paragraph-m"]
Failure 2:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfAlert__cta"]
Failure 3:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfHeader__id"]
Failure 4:
- Message: The line height of the paragraph is less than 1.5
- HTML:
了解更多
XPath: /p[@class="heading-6 mb-5"]
Failure 5:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: 在#ExploreFrance 的社交网络上获得灵感
XPath: /p[@class="text-medium"]
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The first tabbable element in the document is not a semantic link
https://france.fr/ar/article/palace-6-things-you-can-only-find-at-the-plaza-athenee
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
XPath: /button[@class="AfButton AfButton--primary AfButton--small AfButton--red label-s"]
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--white label-s"]
Failure 3:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 5:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
... and 5 more failures for this rule
Rule: SIA-R17
Failure 1:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@class="AfCarousel-slide AfCarousel-slide--next"]
Failure 2:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@class="AfCarousel-slide"]
Rule: SIA-R2: HTML elements have a valid lang attribute
Failure 1:
- Message: The image does not have an accessible name
- HTML:

XPath: /img[@class="AfImage__img"]
Rule: SIA-R3: lang attribute has a valid language code
Failure 1:
- Message: The element does not have a unique ID
- HTML:
...
XPath: /span[@id="label_language-picker"]
Failure 2:
- Message: The element does not have a unique ID
- HTML:
XPath: /ul[@id="language-picker"]
Failure 3:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_fr"]
Failure 4:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_en"]
Failure 5:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_cs"]
... and 11 more failures for this rule
Rule: SIA-R61
Failure 1:
- Message: The document does not start with a level 1 heading
Rule: SIA-R62: Links are visually distinguishable from surrounding text
Failure 1:
- Message: The link is not distinguishable from the surrounding text
- HTML:
اكتشفوا فندق Plaza Athénée
XPath: /a
Rule: SIA-R66: Text has enhanced contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.8:1 which is below the required contrast of 7:1
Rule: SIA-R69: Text has sufficient contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.1:1 which is below the required contrast of 4.5:1
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Failure 1:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Your language (English) does not match the languag...
XPath: /p[@class="paragraph-m"]
Failure 2:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfAlert__cta"]
Failure 3:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfHeader__id"]
Failure 4:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML:
XPath: /p[@class="AfHero__tags"]
Failure 5:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML:
XPath: /p[@class="AfChapo__meta"]
... and 7 more failures for this rule
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The first tabbable element in the document is not a semantic link
https://france.fr/da/artikel/de-parisiske-konditorer-der-genopfinder-kagen
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
XPath: /button[@class="AfButton AfButton--primary AfButton--small AfButton--red label-s"]
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--white label-s"]
Failure 3:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 5:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
... and 5 more failures for this rule
Rule: SIA-R17
Failure 1:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@class="AfCarousel-slide AfCarousel-slide--next"]
Failure 2:
- Message: The element is either tabbable or has tabbable descendants
- HTML:
XPath: /li[@class="AfCarousel-slide"]
Rule: SIA-R2: HTML elements have a valid lang attribute
Failure 1:
- Message: The image does not have an accessible name
- HTML:
XPath: /img[@class="AfImage__img"]
Rule: SIA-R3: lang attribute has a valid language code
Failure 1:
- Message: The element does not have a unique ID
- HTML:
...
XPath: /span[@id="label_language-picker"]
Failure 2:
- Message: The element does not have a unique ID
- HTML:
XPath: /ul[@id="language-picker"]
Failure 3:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_fr"]
Failure 4:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_en"]
Failure 5:
- Message: The element does not have a unique ID
- HTML:
XPath: /li[@id="language-picker_cs"]
... and 11 more failures for this rule
Rule: SIA-R61
Failure 1:
- Message: The document does not start with a level 1 heading
Rule: SIA-R66: Text has enhanced contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.8:1 which is below the required contrast of 7:1
Rule: SIA-R69: Text has sufficient contrast with its background
Failure 1:
- Message: The highest possible contrast of the text is 4.1:1 which is below the required contrast of 4.5:1
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Failure 1:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Your language (English) does not match the languag...
XPath: /p[@class="paragraph-m"]
Failure 2:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfAlert__cta"]
Failure 3:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML: ...
XPath: /p[@class="AfHeader__id"]
Failure 4:
- Message: The line height of the paragraph is less than 1.5
- HTML:
Krokant, fondant, gourmand
XPath: /p[@class="AfHero__type heading-6"]
Failure 5:
- Message: The line height of the paragraph is
normal which will result in a line height of less than 1.5
HTML:
XPath: /p[@class="AfHero__tags"]
... and 8 more failures for this rule
Rule: SIA-R87: First focusable element is a skip link
Failure 1:
- Message: The first tabbable element in the document is not a semantic link
https://france.fr/da/artikel/Find-ro-naturen-hvorfor-ikke-%C3%A5bne-dine-chakraer-Alperne-Frankrig
Rule: SIA-R111: Interactive elements have a sufficient target size
Failure 1:
- Message: Target has insufficient size
- HTML:
XPath: /button[@class="AfButton AfButton--primary AfButton--small AfButton--red label-s"]
Failure 2:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfButton AfButton--primary AfButton--small AfButton--white label-s"]
Failure 3:
- Message: Target has insufficient size
- HTML:
...
XPath: /a
Failure 4:
- Message: Target has insufficient size
- HTML:
...
XPath: /a[@class="AfHeader__link label-m"]
Failure 5:
- Message: Target has insufficient size
- HTML:
XPath: /button[@id="search-btn"]
... and 5 more failures for this rule
Rule: SIA-R13
Failure 1:
- Message: The