Scan Report: GOV.UK

🎯 Priority: Pages with Most Errors

Focus your efforts on these pages to make the biggest impact (combined scanner unique failures):

Pageaxe UniqueALFA UniqueEqual Access UniqueAccessLint UniqueQualWebTotal UniquePage Title
View Page2151006491Making your frontend accessible - Service Manual - GOV.UK
View Page2161304475CNUM1: Assess nutrient management and produce a review report - GOV.UK
View Page215904773Testing for accessibility - Service Manual - GOV.UK
View Page2221303370Apply for an exemption from PSVAR accessibility regulations for home-to-school or rail replacement services - GOV.UK
View Page2181403468Adtech Market Research Report 2019 (ICO, Ofcom) - GOV.UK
View Page2171603368Online Nation Report 2020 (OFCOM) - GOV.UK
View Page2171703268The State of UK Competition Report 2022 (CMA) - GOV.UK
View Page2171603368The use of data by online services 2019 (OFCOM) - GOV.UK
View Page2171503367Online market failures and harms: An economic perspective on the challenges and opportunities in regulating online services 2019 (OFCOM) - GOV.UK
View Page2161603266Communications Market Report 2019 (OFCOM) - GOV.UK

🔧 Priority: Most Common Issues (ALFA)

These ALFA accessibility issues appear most frequently across your pages:

RulePages AffectedDocumentation
SIA-R111: Interactive elements have a sufficient target size100 of 100View Rule
SIA-R57: Landmarks don't repeat the same content100 of 100View Rule
SIA-R61100 of 100View Rule
SIA-R66: Text has enhanced contrast with its background100 of 100View Rule
SIA-R73: Text spacing can be adjusted without loss of content100 of 100View Rule
SIA-R87: First focusable element is a skip link100 of 100View Rule
SIA-R78: Headings of same level have text content between them8 of 100View Rule
SIA-R11: Button elements have an accessible name1 of 100View Rule
💡 Tip: Click on the rule documentation links to learn how to fix each issue.

🔧 Priority: Most Common Issues (axe)

These axe accessibility issues appear most frequently across your pages:

RulePages AffectedDocumentation
region100 of 100View Rule
link-name1 of 100View 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).

🔍 Cross-Page Patterns: Common HTML Issues

These HTML patterns cause the same accessibility errors across multiple pages. Fix the pattern once in your codebase to fix it everywhere!

🎯 Top Patterns to Fix (Highest Impact)

Pattern 1: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:

``html <button class="gem-c-button govuk-button" type="submit" data-accept-cookies="true" data-cookie-types="all">Accept additional cookies</button>

` XPath (use in browser DevTools): `

/button[@class="gem-c-button govuk-button"]

` 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[@class="gem-c-button govuk-button"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 2: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<button class="gem-c-button govuk-button" type="submit" data-reject-cookies="true">Reject additional cookies</button>

` XPath (use in browser DevTools): `

/button[@class="gem-c-button govuk-button"]

` 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[@class="gem-c-button govuk-button"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 3: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-link" href="/help/cookies">View cookies</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-link"]

` 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('/a[@class="govuk-link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 4: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<button class="govuk-button gem-c-feedback__prompt-link js-page-is-useful" data-ga4-event="{"event_name":"form_submit","type":"feedback","text":"Yes","section":"Is this page useful?","tool_name":"Is this page useful?"}">...</button>

` XPath (use in browser DevTools): `

/button[@class="govuk-button gem-c-feedback__prompt-link js-page-is-useful"]

` 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[@class="govuk-button gem-c-feedback__prompt-link js-page-is-useful"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 5: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<button class="govuk-button gem-c-feedback__prompt-link js-toggle-form js-page-is-not-useful" aria-controls="page-is-not-useful" data-ga4-event="{"event_name":"form_submit","type":"feedback","text":"No","section":"Is this page useful?","tool_name":"Is this page useful?"}">...</button>

` XPath (use in browser DevTools): `

/button[@class="govuk-button gem-c-feedback__prompt-link js-toggle-form js-page-is-not-useful"]

` 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[@class="govuk-button gem-c-feedback__prompt-link js-toggle-form js-page-is-not-useful"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 6: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<button class="govuk-button gem-c-feedback__prompt-link js-toggle-form js-something-is-wrong" aria-controls="something-is-wrong" data-ga4-event="{"event_name":"form_submit","type":"feedback","text":"Report a problem with this page","section":"Is this page useful?","tool_name":"Is this page useful?"}"> Report a problem with this page </button>

` XPath (use in browser DevTools): `

/button[@class="govuk-button gem-c-feedback__prompt-link js-toggle-form js-something-is-wrong"]

` 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[@class="govuk-button gem-c-feedback__prompt-link js-toggle-form js-something-is-wrong"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 7: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"1","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/benefits">Benefits</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 8: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"2","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/births-deaths-marriages">Births, death, marriages and care</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 9: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"3","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/business">Business and self-employed</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 10: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"4","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/childcare-parenting">Childcare and parenting</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 11: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"5","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/citizenship">Citizenship and living in the UK</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 12: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"6","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/justice">Crime, justice and the law</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 13: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"7","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/disabilities">Disabled people</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 14: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"8","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/driving">Driving and transport</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

Pattern 15: Affects 100 page(s) - 100 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size HTML Pattern:
`html

<a class="govuk-footer__link" data-ga4-link="{"event_name":"navigation","type":"footer","index_link":"9","index_section":"1","index_section_count":"5","index_total":"16","section":"Services and information"}" href="/browse/education">Education and learning</a>

` XPath (use in browser DevTools): `

/a[@class="govuk-footer__link"]

` 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('/a[@class="govuk-footer__link"]') 5. The element will be highlighted

Affected Pages:

---

💡 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 URLFinal URLStatusHTTPRedirectedTime (ms)axe UniqueALFA UniqueEqual Access UniqueAccessLint UniqueDuplicatesNotes
https://gov.uk/service-manual/helping-people-to-use-your-service/getting-an-accessibility-audithttps://www.gov.uk/service-manual/helping-people-to-use-your-service/getting-an-accessibility-auditOK200yes12151215100144page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-tu4+Gu+2Q5xyK2JeDg3qOQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/service-manual/helping-people-to-use-your-service/testing-for-accessibilityhttps://www.gov.uk/service-manual/helping-people-to-use-your-service/testing-for-accessibilityOK200yes960221590175page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-SgA69QtR7Ko38vY4wTZ3Qw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-hmrc-contacts/online-debit-and-credit-card-payment-supporthttps://www.gov.uk/find-hmrc-contacts/online-debit-and-credit-card-payment-supportOK200yes883621510081page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-JknNSafIRIwYAF48T3+wfw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/technical-support-with-vat-online-serviceshttps://www.gov.uk/find-hmrc-contacts/technical-support-with-vat-online-servicesOK200yes917221510096page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-GMaopkL7piGGoxxiTWozMw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/domiciliary-support-service-registration-waleshttps://www.gov.uk/find-licences/domiciliary-support-service-registration-walesOK200yes852221511050page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-Xk+rdWss+hSKElspdRnKug==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/find-licences/support-services-providing-day-care-to-adults-registration-scotlandhttps://www.gov.uk/find-licences/support-services-providing-day-care-to-adults-registration-scotlandOK200yes891021510056page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-WMOH++5EbbON1ofMOuybqA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/government/news/help-find-new-ways-to-ease-global-disruption-apply-for-fundinghttps://www.gov.uk/government/news/help-find-new-ways-to-ease-global-disruption-apply-for-fundingOK200yes930022012088page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-OpNyiqrkqaVU68lv+8jR7w==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, blockquote_cite_exists, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_sensory_misuse
https://gov.uk/government/news/new-find-a-job-service-to-support-thousands-of-jobseekers-into-workhttps://www.gov.uk/government/news/new-find-a-job-service-to-support-thousands-of-jobseekers-into-workOK200yes893221820081page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-8kvQngPK/i9j8fjXpu3Iyw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, blockquote_cite_exists, element_attribute_deprecated, element_tabbable_unobscured, figure_label_exists, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_sensory_misuse
https://gov.uk/government/news/publication-of-dwp-research-report-707-employment-and-support-allowance-findings-from-a-face-to-face-survey-of-customershttps://www.gov.uk/government/news/publication-of-dwp-research-report-707-employment-and-support-allowance-findings-from-a-face-to-face-survey-of-customersOK200yes856131813061page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-n1ytc6LLJR8CVE+bQ0U0EQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: link-name, region
Equal Access failed rules: a_text_purpose, aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_visible, figure_label_exists, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/government/news/publication-of-dwp-research-report-745-employment-and-support-allowance-findings-from-a-follow-up-survey-of-customershttps://www.gov.uk/government/news/publication-of-dwp-research-report-745-employment-and-support-allowance-findings-from-a-follow-up-survey-of-customersOK200yes911521713065page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-xSJt0GZoByFOUM4KLjnktw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, figure_label_exists, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_sensory_misuse
https://gov.uk/government/publications/support-for-newly-unemployed-and-six-month-offer-evaluations-a-reporton-qualitative-research-findings-rr691https://www.gov.uk/government/publications/support-for-newly-unemployed-and-six-month-offer-evaluations-a-reporton-qualitative-research-findings-rr691OK200yes945121915090page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-s9QpvvmvtyeATaQvJre40g==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/https://www.gov.uk/OK200yes10040213170101page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-nTW9x9V5B4jnEhnkqM1tjw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_keyboard_handler_exists, aria_role_redundant, aria_role_valid, element_attribute_deprecated, figure_label_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading
https://gov.uk/government/publications/helping-people-in-alcohol-and-drug-treatment-services-into-work/individual-placement-and-support-alcohol-and-drug-study-main-findings--2https://www.gov.uk/government/publications/helping-people-in-alcohol-and-drug-treatment-services-into-work/individual-placement-and-support-alcohol-and-drug-study-main-findings--2OK200yes11961217100145page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-a/ex1mdSB5RVKh+vTn3QcA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), SIA-R61, SIA-R66 (Text has enhanced 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/reporting-accessibility-problem-public-sector-websitehttps://www.gov.uk/reporting-accessibility-problem-public-sector-websiteOK200yes877821410061page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-eEnndhfrbun3plCh87G5SQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/guidance/accessibility-statement-for-new-adults-in-the-home-servicehttps://www.gov.uk/guidance/accessibility-statement-for-new-adults-in-the-home-serviceOK200yes9690219130126page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-F3uSz2lCsanfcwfB44CQpg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), SIA-R61, SIA-R66 (Text has enhanced 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: region
Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/guidance/accessibility-statement-for-paying-your-childcare-or-social-care-invoicehttps://www.gov.uk/guidance/accessibility-statement-for-paying-your-childcare-or-social-care-invoiceOK200yes9568219140112page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-Ys3hUnGsI1uITQMw8jDu+Q==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), SIA-R61, SIA-R66 (Text has enhanced 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: region
Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/guidance/accessibility-statement-for-public-home-office-serviceshttps://www.gov.uk/guidance/accessibility-statement-for-public-home-office-servicesOK200yes9401218160146page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-lr7QIExCUfg4axu7pa4d1w==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/guidance/accessibility-statement-for-register-as-a-nanny-servicehttps://www.gov.uk/guidance/accessibility-statement-for-register-as-a-nanny-serviceOK200yes9891219130128page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-1bmN0AdklTv+5vEv0oQngw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), SIA-R61, SIA-R66 (Text has enhanced 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: region
Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/guidance/accessibility-statement-for-tell-ofsted-about-a-serious-childcare-incident-servicehttps://www.gov.uk/guidance/accessibility-statement-for-tell-ofsted-about-a-serious-childcare-incident-serviceOK200yes9853219150127page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-88/QTGgZI0j0iOkgHoWccw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), SIA-R61, SIA-R66 (Text has enhanced 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: region
Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, text_quoted_correctly, text_sensory_misuse
https://gov.uk/guidance/apply-for-an-exemption-from-psvar-accessibility-regulations-for-home-to-school-or-rail-replacement-serviceshttps://www.gov.uk/guidance/apply-for-an-exemption-from-psvar-accessibility-regulations-for-home-to-school-or-rail-replacement-servicesOK200yes11151222130153page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-EVEHKIc5gX80bbD6cmtaDw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), SIA-R61, SIA-R66 (Text has enhanced 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: region
Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/research-for-development-outputs/does-service-accessibility-reduce-socio-economic-differentials-in-maternity-care-seeking-evidence-from-rural-bangladeshhttps://www.gov.uk/research-for-development-outputs/does-service-accessibility-reduce-socio-economic-differentials-in-maternity-care-seeking-evidence-from-rural-bangladeshOK200yes894421611087page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-ki3VgrS1WTbdShhyPwRNoQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-disabled-people-in-urban-and-peri-urban-areas-country-report-mozambiquehttps://www.gov.uk/research-for-development-outputs/enhanced-accessibility-for-disabled-people-in-urban-and-peri-urban-areas-country-report-mozambiqueOK200yes895721611090page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-iTC/B2MbTFGTMvIXSBfWDw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-people-with-disabilities-in-urban-areas-inception-reporthttps://www.gov.uk/research-for-development-outputs/enhanced-accessibility-for-people-with-disabilities-in-urban-areas-inception-reportOK200yes8994217100101page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-ef8tcDDdhzTLYfjq8hXzcA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient
https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-persons-with-disabilities-living-in-urban-areas-country-report-south-africahttps://www.gov.uk/research-for-development-outputs/enhanced-accessibility-for-persons-with-disabilities-living-in-urban-areas-country-report-south-africaOK200yes886221711087page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-XGRXp0gQpzd3qPJSOJ4EtA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), SIA-R61, SIA-R66 (Text has enhanced 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/find-gender-pay-gap-datahttps://www.gov.uk/find-gender-pay-gap-dataOK200yes861421610057page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-HoZj7k50xntvz8XE/N9JPw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/find-registered-childminderhttps://www.gov.uk/find-registered-childminderOK200yes933731412075page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-ELug2aMkmL38ZzNux02n7A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/government/consultations/accessible-travel-policy-guidance-accessibility-of-rail-replacement-serviceshttps://www.gov.uk/government/consultations/accessible-travel-policy-guidance-accessibility-of-rail-replacement-servicesOK200yes923522015080page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-OCCEMTYiedsBgpIHbrlI/A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), SIA-R61, SIA-R66 (Text has enhanced 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: region
Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/government/news/global-accessibility-awareness-day-minister-calls-on-the-public-sector-to-ensure-digital-services-are-accessiblehttps://www.gov.uk/government/news/global-accessibility-awareness-day-minister-calls-on-the-public-sector-to-ensure-digital-services-are-accessibleOK200yes830121813073page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-MK/4TCbUt+BZ+ApdLzhyFQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, blockquote_cite_exists, element_attribute_deprecated, figure_label_exists, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/government/news/minister-announces-accessibility-improvements-to-voter-registration-servicehttps://www.gov.uk/government/news/minister-announces-accessibility-improvements-to-voter-registration-serviceOK200yes885721813071page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-hhdE3Sp0K9AI5RrlqmBoWw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, blockquote_cite_exists, element_attribute_deprecated, figure_label_exists, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/government/news/new-funding-for-accessibility-as-government-reports-progress-for-disabled-people-across-transport-networkhttps://www.gov.uk/government/news/new-funding-for-accessibility-as-government-reports-progress-for-disabled-people-across-transport-networkOK200yes886221916098page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-rSHrZmdcldTzLDEtzE/6Nw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, blockquote_cite_exists, element_attribute_deprecated, figure_label_exists, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_sensory_misuse
https://gov.uk/higher-education-courses-find-and-applyhttps://www.gov.uk/higher-education-courses-find-and-applyOK200yes9367217100113page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-KBn8APOnsk1GU2U0k6/K8g==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/service-manual/technology/accessibility-for-developers-an-introductionhttps://www.gov.uk/service-manual/technology/accessibility-for-developers-an-introductionOK200yes10645215100208page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-RI36/6t71nwr7MiIQ+VNzw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/aaib-reports/aaib-investigation-to-reims-cessna-f406-caravan-ii-g-findhttps://www.gov.uk/aaib-reports/aaib-investigation-to-reims-cessna-f406-caravan-ii-g-findOK200yes902121811093page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-kw16HniXDxHcf0kAMc2UDA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/aaib-reports/aaib-investigation-to-reims-cessna-f406-g-findhttps://www.gov.uk/aaib-reports/aaib-investigation-to-reims-cessna-f406-g-findOK200yes922521811095page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-mQ61Pu2xj5xaVaItMAQtrg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/aaib-reports/huntair-pathfinder-g-mjjt-4-june-1983https://www.gov.uk/aaib-reports/huntair-pathfinder-g-mjjt-4-june-1983OK200yes849821610085page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-H/H/8VkHPGXZrk+FVlqx1A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient
https://gov.uk/aaib-reports/pathfinder-mk-1-g-mjjr-21-april-1990https://www.gov.uk/aaib-reports/pathfinder-mk-1-g-mjjr-21-april-1990OK200yes838421610085page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-Rd8eXIN6JOQIwYjLZPliIA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient
https://gov.uk/aaib-reports/piper-pa-28-235-cherokee-pathfinder-g-bamm-19-june-1994https://www.gov.uk/aaib-reports/piper-pa-28-235-cherokee-pathfinder-g-bamm-19-june-1994OK200yes852321610085page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-wHBEwWniAwq+tONw3zLqLQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient
https://gov.uk/aaib-reports/reims-cessna-f406-caravan-ii-g-find-6-september-2007https://www.gov.uk/aaib-reports/reims-cessna-f406-caravan-ii-g-find-6-september-2007OK200yes831021610089page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-lh0R3S8S9vf/eCqNY2+jHA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient
https://gov.uk/employment-tribunal-decisions/mr-e-findlay-v-morrisons-utility-services-2600035-2017https://www.gov.uk/employment-tribunal-decisions/mr-e-findlay-v-morrisons-utility-services-2600035-2017OK200yes99452169071page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-zESWrmk0NxJc0xTX4HY3fg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-digital-market-research/adtech-market-research-report-2019-ico-ofcomhttps://www.gov.uk/find-digital-market-research/adtech-market-research-report-2019-ico-ofcomOK200yes9159218140114page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-W+ykGtlupRGaZ6YM8WRNjw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/communications-market-report-2019-ofcomhttps://www.gov.uk/find-digital-market-research/communications-market-report-2019-ofcomOK200yes8781216160112page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-F2a8g77Ush6OL+KpIcULag==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/communications-market-report-2020-ofcomhttps://www.gov.uk/find-digital-market-research/communications-market-report-2020-ofcomOK200yes8907216150109page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-Q1c+NqSI5jxMTte635I9jg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/connected-nations-uk-report-2020-ofcomhttps://www.gov.uk/find-digital-market-research/connected-nations-uk-report-2020-ofcomOK200yes9165216150112page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-NTiswo4zjzABCD+gHK6HRQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/consumer-views-on-cashless-payments-in-land-based-gambling-2021-gambling-commissionhttps://www.gov.uk/find-digital-market-research/consumer-views-on-cashless-payments-in-land-based-gambling-2021-gambling-commissionOK200yes8555216130103page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-U/Zvn7G1HeKJ1A8YzU1XeA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient
https://gov.uk/find-digital-market-research/influencer-report-the-impact-of-complicit-social-media-influencers-on-the-consumption-of-counterfeit-goods-in-the-uk-2021-ipohttps://www.gov.uk/find-digital-market-research/influencer-report-the-impact-of-complicit-social-media-influencers-on-the-consumption-of-counterfeit-goods-in-the-uk-2021-ipoOK200yes8864216140103page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-K/wmdn2kkium5yqsbGHGDQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-appendix-k-consumer-experiences-of-app-purchases-and-auto-renewing-subscriptions-to-apps-sold-through-app-stores-2022-cmahttps://www.gov.uk/find-digital-market-research/mobile-ecosystems-market-study-appendix-k-consumer-experiences-of-app-purchases-and-auto-renewing-subscriptions-to-apps-sold-through-app-stores-2022-cmaOK200yes9440216140105page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-swPPT7Mfao6WKEIvrQSPGw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, heading_markup_misuse, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-interim-report-appendix-f-understanding-the-role-of-browser-engines-2021-cmahttps://www.gov.uk/find-digital-market-research/mobile-ecosystems-market-study-interim-report-appendix-f-understanding-the-role-of-browser-engines-2021-cmaOK200yes10212216130100page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-v6WSmznJBpRd7DC2qsZgDw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-interim-report-appendix-g-pre-installation-default-settings-and-choice-architecture-for-mobile-browsers-2021-cmahttps://www.gov.uk/find-digital-market-research/mobile-ecosystems-market-study-interim-report-appendix-g-pre-installation-default-settings-and-choice-architecture-for-mobile-browsers-2021-cmaOK200yes9058216130106page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-GUKhODJK1y2uHutCzyuk2w==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/object-based-media-report-2021-ofcomhttps://www.gov.uk/find-digital-market-research/object-based-media-report-2021-ofcomOK200yes903921612096page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-5lbMOPOnrKVoiYPO289rfw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/online-market-failures-and-harms-an-economic-perspective-on-the-challenges-and-opportunities-in-regulating-online-services-2019-ofcomhttps://www.gov.uk/find-digital-market-research/online-market-failures-and-harms-an-economic-perspective-on-the-challenges-and-opportunities-in-regulating-online-services-2019-ofcomOK200yes9169217150115page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-m4aFxx8HBbwiEjoNsy8DTw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/online-nation-report-2020-ofcomhttps://www.gov.uk/find-digital-market-research/online-nation-report-2020-ofcomOK200yes9231217160114page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-SPMNahmnty15N7LZuiC2gA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/protecting-children-online-2020-2021-report-2021-asahttps://www.gov.uk/find-digital-market-research/protecting-children-online-2020-2021-report-2021-asaOK200yes902721614098page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-RL9lT4bZ2wJb47LgnvQbTg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/find-digital-market-research/the-state-of-uk-competition-report-2022-cmahttps://www.gov.uk/find-digital-market-research/the-state-of-uk-competition-report-2022-cmaOK200yes9157217170112page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-yMjq8DbDfpjAwUAZL3Q1lA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/the-state-of-uk-competition-report-november-2020-cmahttps://www.gov.uk/find-digital-market-research/the-state-of-uk-competition-report-november-2020-cmaOK200yes890321611091page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-QY4IpzEQMJzEfsNjUVfsdg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/the-use-of-data-by-online-services-2019-ofcomhttps://www.gov.uk/find-digital-market-research/the-use-of-data-by-online-services-2019-ofcomOK200yes9129217160114page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-Z1TfDKdvi0Z9AHlzztHeLw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-digital-market-research/transparency-in-the-regulation-of-online-safety-research-report-for-ofcom-2021-ofcomhttps://www.gov.uk/find-digital-market-research/transparency-in-the-regulation-of-online-safety-research-report-for-ofcom-2021-ofcomOK200yes9107217120108page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-HI1Su8luMSymWeDDeUBrgQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient
https://gov.uk/find-funding-for-land-or-farms/cnum1-assess-nutrient-management-and-produce-a-review-reporthttps://www.gov.uk/find-funding-for-land-or-farms/cnum1-assess-nutrient-management-and-produce-a-review-reportOK200yes10144216130175page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-J0KYAsBGKXb29gr9ZcJWaQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse
https://gov.uk/find-hmrc-contacts/alcohol-duties-paymentshttps://www.gov.uk/find-hmrc-contacts/alcohol-duties-paymentsOK200yes903121512097page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-e6Vfj232NGHIJbmJuhPGNg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/childcare-service-helplinehttps://www.gov.uk/find-hmrc-contacts/childcare-service-helplineOK200yes914921510080page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-PX+BQdRbORBECDPZU/Zhbg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/complain-about-hmrc-online-serviceshttps://www.gov.uk/find-hmrc-contacts/complain-about-hmrc-online-servicesOK200yes902321512096page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-Mpg2A0I2b9XayTi1bHCOLw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/construction-industry-scheme-paymentshttps://www.gov.uk/find-hmrc-contacts/construction-industry-scheme-paymentsOK200yes887121512092page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-iCdDiBh/7a8a9i4rt1Iuiw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/deferred-national-insurance-contributions-paymentshttps://www.gov.uk/find-hmrc-contacts/deferred-national-insurance-contributions-paymentsOK200yes884421512086page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-6wMXNGTcCjtMCdUucfLY9Q==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/excise-movement-and-control-system-online-serviceshttps://www.gov.uk/find-hmrc-contacts/excise-movement-and-control-system-online-servicesOK200yes808621510070page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-JjxzeTSkWKq7ZPDcVZMuxw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/miscellaneous-payments-teamhttps://www.gov.uk/find-hmrc-contacts/miscellaneous-payments-teamOK200yes893121512090page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-VeFaXJ4EAfbKkFwqpB9eaw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/new-computerised-transit-system-testing-serviceshttps://www.gov.uk/find-hmrc-contacts/new-computerised-transit-system-testing-servicesOK200yes89432159072page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-x0NXmF2e0N+24Pdtx9nEAg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-hmrc-contacts/non-uk-residents-paymenthttps://www.gov.uk/find-hmrc-contacts/non-uk-residents-paymentOK200yes937921512096page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-g1Fb0mQMiosPqewtvxuu6A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/off-payroll-working-ir35-enquirieshttps://www.gov.uk/find-hmrc-contacts/off-payroll-working-ir35-enquiriesOK200yes891721512079page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-8Df+d5fF6nq4+RwaXYZ5Sw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/payment-problems-enquirieshttps://www.gov.uk/find-hmrc-contacts/payment-problems-enquiriesOK200yes9244215100104page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-GOWQFEtr6PTgO0nFRHJoig==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/repayments-where-to-send-claim-formshttps://www.gov.uk/find-hmrc-contacts/repayments-where-to-send-claim-formsOK200yes889921512082page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-XcqHRLHnD1JaJKwOmpiycw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/report-suspicious-hmrc-emails-texts-social-media-accounts-and-phone-callshttps://www.gov.uk/find-hmrc-contacts/report-suspicious-hmrc-emails-texts-social-media-accounts-and-phone-callsOK200yes91322159087page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-hkHMskS3L2j+ex1wleA2uQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-hmrc-contacts/secure-data-exchange-service-sdes-enquirieshttps://www.gov.uk/find-hmrc-contacts/secure-data-exchange-service-sdes-enquiriesOK200yes879421510067page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-1O4YEdgMGxMKuUS0BvavWw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/self-assessment-paymentshttps://www.gov.uk/find-hmrc-contacts/self-assessment-paymentsOK200yes8904215120100page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-8hMCK3K2WW3uGpA9PUSp3A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/statutory-payment-dispute-teamhttps://www.gov.uk/find-hmrc-contacts/statutory-payment-dispute-teamOK200yes891721512084page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-0KFnrwuoUCvFe5bxAZGGdw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-hmrc-contacts/tax-credits-payment-enquirieshttps://www.gov.uk/find-hmrc-contacts/tax-credits-payment-enquiriesOK200yes914221513083page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-bJ+gJzoA81Bjtl3a0kmPWw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_quoted_correctly
https://gov.uk/find-hmrc-contacts/vat-overseas-repayments-for-non-uk-businesseshttps://www.gov.uk/find-hmrc-contacts/vat-overseas-repayments-for-non-uk-businessesOK200yes837921512090page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-PW3Ya2ka0Z0GKsJ22oVvSg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/adoption-service-registration-waleshttps://www.gov.uk/find-licences/adoption-service-registration-walesOK200yes785521510050page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-Ka5hqu+NPuhHNdDdzIGiIw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/adult-placement-service-registration-waleshttps://www.gov.uk/find-licences/adult-placement-service-registration-walesOK200yes783721510050page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-b7yzetFlJqyD9+kb0UD6dQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/adult-placement-services-registration-northern-irelandhttps://www.gov.uk/find-licences/adult-placement-services-registration-northern-irelandOK200yes847721512060page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-sT8cBWiSpYDKk/jB6xkMBQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/adult-placement-services-registration-scotlandhttps://www.gov.uk/find-licences/adult-placement-services-registration-scotlandOK200yes914721512069page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-A2IsnkwtSZ7FID59980F3g==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/apply-for-a-thames-accommodation-licencehttps://www.gov.uk/find-licences/apply-for-a-thames-accommodation-licenceOK200yes873021712060page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-Pk68bsNkqGt5aK5e4cFcJw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/booking-office-licence-scotlandhttps://www.gov.uk/find-licences/booking-office-licence-scotlandOK200yes879221410056page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-EL0wd169SpPGof4NIgwBqw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/bookmaker-s-premises-licence-scotlandhttps://www.gov.uk/find-licences/bookmaker-s-premises-licence-scotlandOK200yes908921410047page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-8ddaqhn9JSb3WtGco1b74A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/bookmaking-office-licence-northern-irelandhttps://www.gov.uk/find-licences/bookmaking-office-licence-northern-irelandOK200yes886221410053page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-UgvAbDqbdzh9OFOie5BQsg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/care-at-home-services-registration-scotlandhttps://www.gov.uk/find-licences/care-at-home-services-registration-scotlandOK200yes961121510056page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-0xxltQN5/p6kHqdq6aoe5g==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/care-home-service-registration-waleshttps://www.gov.uk/find-licences/care-home-service-registration-walesOK200yes915421510050page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-v0mDZ1HQ8SkMg40ARc/H5Q==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/domiciliary-care-service-registration-nihttps://www.gov.uk/find-licences/domiciliary-care-service-registration-niOK200yes918121510052page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-vHimdgww7KfIA7qYFVbj1A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/fostering-service-manager-registration-waleshttps://www.gov.uk/find-licences/fostering-service-manager-registration-walesOK200yes931521510057page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-uhj2a4jLAkAGTtobK+m2Cg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/general-aviation-report-notification-northern-irelandhttps://www.gov.uk/find-licences/general-aviation-report-notification-northern-irelandOK200yes909421511060page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-VwZ/5tWxiFe6hAl5jgeO+A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/pollution-data-reporting-scotlandhttps://www.gov.uk/find-licences/pollution-data-reporting-scotlandOK200yes863521511060page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-dsEH+cdU/ZfYJG2TKwGp1A==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_sensory_misuse
https://gov.uk/find-licences/register-a-hairdressing-businesshttps://www.gov.uk/find-licences/register-a-hairdressing-businessOK200yes860221512057page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-oHYBL6GLhUTQNjO2+f69DA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/register-as-number-plate-supplierhttps://www.gov.uk/find-licences/register-as-number-plate-supplier/dvlaOK200yes984221414086page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-xcuywk9z0UqoX37ohVWidw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/register-cattle-northern-irelandhttps://www.gov.uk/find-licences/register-cattle-northern-irelandOK200yes851221510062page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-U+VJhB7xo9mypUxEJh5DUg==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/register-hairdressing-waleshttps://www.gov.uk/find-licences/register-hairdressing-walesOK200yes858321512057page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-h7vEUMUqEMGEHEkKbGZutA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/register-physiotherapisthttps://www.gov.uk/find-licences/register-physiotherapistOK200yes859021510049page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-0W/OCTVdy2obtw0mCnRUGQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/register-to-practise-as-a-veterinarianhttps://www.gov.uk/find-licences/register-to-practise-as-a-veterinarianOK200yes926921510057page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-VhCE4id7KnX4EQff7lnFpA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/registration-independent-healthcare-service-scotlandhttps://www.gov.uk/find-licences/registration-independent-healthcare-service-scotlandOK200yes973921513070page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-g1wD/RWxIJukX5C6ofJDuw==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading
https://gov.uk/find-licences/registration-of-independent-health-care-service-england-waleshttps://www.gov.uk/find-licences/registration-of-independent-health-care-service-england-walesOK200yes944921410051page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-QPXRFnhHagD662Wf56fjXQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/secure-accommodation-service-registration-waleshttps://www.gov.uk/find-licences/secure-accommodation-service-registration-walesOK200yes2397221510050page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-C0CVW88IJ30+V3SYnEh2hA==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/find-licences/vessel-traffic-services-vts-licencehttps://www.gov.uk/find-licences/vessel-traffic-services-vts-licenceOK200yes888321510059page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-chburjlbY+uobr4ZpyR/lQ==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, input_label_visible, style_color_misuse, style_highcontrast_visible
https://gov.uk/flood-and-coastal-erosion-risk-management-research-reports/adapting-to-coastal-erosion-evaluation-of-rollback-and-leaseback-schemes-in-coastal-change-pathfinder-projectshttps://www.gov.uk/flood-and-coastal-erosion-risk-management-research-reports/adapting-to-coastal-erosion-evaluation-of-rollback-and-leaseback-schemes-in-coastal-change-pathfinder-projectsOK200yes9883216130116page.addScriptTag: Executing inline script violates the following Content Security Policy directive 'script-src 'self' www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com region1.analytics.google.com www.google.co.uk www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com 'nonce-nfavQYCkFQ8LQmL6sKXc1g==''. Either the 'unsafe-inline' keyword, a hash ('sha256-iLB/qGn2fKTfTYFKNKTMDW4mWOq+TwpFIWKi5guSmvk='), or a nonce ('nonce-...') is required to enable inline execution. The action has been blocked.
ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don't repeat the same content), 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: region
Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse

Detailed Failure Information (ALFA)

https://gov.uk/service-manual/helping-people-to-use-your-service/getting-an-accessibility-audit

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/service-manual/helping-people-to-use-your-service/testing-for-accessibility

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/online-debit-and-credit-card-payment-support

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/technical-support-with-vat-online-services

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/domiciliary-support-service-registration-wales

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/support-services-providing-day-care-to-adults-registration-scotland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/news/help-find-new-ways-to-ease-global-disruption-apply-for-funding

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 1 more failures for this rule

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/news/new-find-a-job-service-to-support-thousands-of-jobseekers-into-work

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 1 more failures for this rule

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/news/publication-of-dwp-research-report-707-employment-and-support-allowance-findings-from-a-face-to-face-survey-of-customers

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/news/publication-of-dwp-research-report-745-employment-and-support-allowance-findings-from-a-follow-up-survey-of-customers

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/publications/support-for-newly-unemployed-and-six-month-offer-evaluations-a-reporton-qualitative-research-findings-rr691

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/publications/helping-people-in-alcohol-and-drug-treatment-services-into-work/individual-placement-and-support-alcohol-and-drug-study-main-findings--2

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/reporting-accessibility-problem-public-sector-website

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/guidance/accessibility-statement-for-new-adults-in-the-home-service

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/guidance/accessibility-statement-for-paying-your-childcare-or-social-care-invoice

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/guidance/accessibility-statement-for-public-home-office-services

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/guidance/accessibility-statement-for-register-as-a-nanny-service

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/guidance/accessibility-statement-for-tell-ofsted-about-a-serious-childcare-incident-service

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/guidance/apply-for-an-exemption-from-psvar-accessibility-regulations-for-home-to-school-or-rail-replacement-services

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 7 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/research-for-development-outputs/does-service-accessibility-reduce-socio-economic-differentials-in-maternity-care-seeking-evidence-from-rural-bangladesh

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-disabled-people-in-urban-and-peri-urban-areas-country-report-mozambique

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-people-with-disabilities-in-urban-areas-inception-report

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-persons-with-disabilities-living-in-urban-areas-country-report-south-africa

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-gender-pay-gap-data

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-registered-childminder

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/consultations/accessible-travel-policy-guidance-accessibility-of-rail-replacement-services

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/news/global-accessibility-awareness-day-minister-calls-on-the-public-sector-to-ensure-digital-services-are-accessible

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/news/minister-announces-accessibility-improvements-to-voter-registration-service

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/government/news/new-funding-for-accessibility-as-government-reports-progress-for-disabled-people-across-transport-network

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 1 more failures for this rule

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/higher-education-courses-find-and-apply

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/service-manual/technology/accessibility-for-developers-an-introduction

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/aaib-reports/aaib-investigation-to-reims-cessna-f406-caravan-ii-g-find

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/aaib-reports/aaib-investigation-to-reims-cessna-f406-g-find

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/aaib-reports/huntair-pathfinder-g-mjjt-4-june-1983

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/aaib-reports/pathfinder-mk-1-g-mjjr-21-april-1990

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/aaib-reports/piper-pa-28-235-cherokee-pathfinder-g-bamm-19-june-1994

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/aaib-reports/reims-cessna-f406-caravan-ii-g-find-6-september-2007

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/employment-tribunal-decisions/mr-e-findlay-v-morrisons-utility-services-2600035-2017

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/adtech-market-research-report-2019-ico-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 6 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/communications-market-report-2019-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/communications-market-report-2020-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/connected-nations-uk-report-2020-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/consumer-views-on-cashless-payments-in-land-based-gambling-2021-gambling-commission

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/influencer-report-the-impact-of-complicit-social-media-influencers-on-the-consumption-of-counterfeit-goods-in-the-uk-2021-ipo

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-appendix-k-consumer-experiences-of-app-purchases-and-auto-renewing-subscriptions-to-apps-sold-through-app-stores-2022-cma

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-interim-report-appendix-f-understanding-the-role-of-browser-engines-2021-cma

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-interim-report-appendix-g-pre-installation-default-settings-and-choice-architecture-for-mobile-browsers-2021-cma

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/object-based-media-report-2021-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/online-market-failures-and-harms-an-economic-perspective-on-the-challenges-and-opportunities-in-regulating-online-services-2019-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/online-nation-report-2020-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/protecting-children-online-2020-2021-report-2021-asa

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/the-state-of-uk-competition-report-2022-cma

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/the-state-of-uk-competition-report-november-2020-cma

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/the-use-of-data-by-online-services-2019-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-digital-market-research/transparency-in-the-regulation-of-online-safety-research-report-for-ofcom-2021-ofcom

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 5 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-funding-for-land-or-farms/cnum1-assess-nutrient-management-and-produce-a-review-report

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/alcohol-duties-payments

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/childcare-service-helpline

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/complain-about-hmrc-online-services

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/construction-industry-scheme-payments

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/deferred-national-insurance-contributions-payments

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/excise-movement-and-control-system-online-services

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/miscellaneous-payments-team

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/new-computerised-transit-system-testing-services

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/non-uk-residents-payment

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/off-payroll-working-ir35-enquiries

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/payment-problems-enquiries

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/repayments-where-to-send-claim-forms

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/report-suspicious-hmrc-emails-texts-social-media-accounts-and-phone-calls

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/secure-data-exchange-service-sdes-enquiries

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/self-assessment-payments

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/statutory-payment-dispute-team

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/tax-credits-payment-enquiries

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-hmrc-contacts/vat-overseas-repayments-for-non-uk-businesses

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/adoption-service-registration-wales

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/adult-placement-service-registration-wales

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/adult-placement-services-registration-northern-ireland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/adult-placement-services-registration-scotland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/apply-for-a-thames-accommodation-licence

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/booking-office-licence-scotland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/bookmaker-s-premises-licence-scotland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/bookmaking-office-licence-northern-ireland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/care-at-home-services-registration-scotland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/care-home-service-registration-wales

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/domiciliary-care-service-registration-ni

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/fostering-service-manager-registration-wales

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/general-aviation-report-notification-northern-ireland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/pollution-data-reporting-scotland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/register-a-hairdressing-business

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/register-as-number-plate-supplier

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/register-cattle-northern-ireland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/register-hairdressing-wales

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 3 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/register-physiotherapist

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/register-to-practise-as-a-veterinarian

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/registration-independent-healthcare-service-scotland

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/registration-of-independent-health-care-service-england-wales

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/secure-accommodation-service-registration-wales

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/find-licences/vessel-traffic-services-vts-licence

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 2 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3: Failure 4:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

https://gov.uk/flood-and-coastal-erosion-risk-management-research-reports/adapting-to-coastal-erosion-evaluation-of-rollback-and-leaseback-schemes-in-coastal-change-pathfinder-projects

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:
Failure 2: Failure 3: Failure 4: Failure 5: ... and 4 more failures for this rule

Rule: SIA-R57: Landmarks don't repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:
Failure 2: Failure 3:

Rule: SIA-R87: First focusable element is a skip link

Failure 1:

Detailed Failure Information (axe)

https://gov.uk/service-manual/helping-people-to-use-your-service/getting-an-accessibility-audit

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/service-manual/helping-people-to-use-your-service/testing-for-accessibility

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/online-debit-and-credit-card-payment-support

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/technical-support-with-vat-online-services

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/domiciliary-support-service-registration-wales

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/support-services-providing-day-care-to-adults-registration-scotland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/news/help-find-new-ways-to-ease-global-disruption-apply-for-funding

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/news/new-find-a-job-service-to-support-thousands-of-jobseekers-into-work

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/news/publication-of-dwp-research-report-707-employment-and-support-allowance-findings-from-a-face-to-face-survey-of-customers

Rule: link-name

Impact: serious Failure 1:

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/news/publication-of-dwp-research-report-745-employment-and-support-allowance-findings-from-a-follow-up-survey-of-customers

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/publications/support-for-newly-unemployed-and-six-month-offer-evaluations-a-reporton-qualitative-research-findings-rr691

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/publications/helping-people-in-alcohol-and-drug-treatment-services-into-work/individual-placement-and-support-alcohol-and-drug-study-main-findings--2

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/reporting-accessibility-problem-public-sector-website

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/guidance/accessibility-statement-for-new-adults-in-the-home-service

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/guidance/accessibility-statement-for-paying-your-childcare-or-social-care-invoice

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/guidance/accessibility-statement-for-public-home-office-services

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/guidance/accessibility-statement-for-register-as-a-nanny-service

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/guidance/accessibility-statement-for-tell-ofsted-about-a-serious-childcare-incident-service

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/guidance/apply-for-an-exemption-from-psvar-accessibility-regulations-for-home-to-school-or-rail-replacement-services

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/research-for-development-outputs/does-service-accessibility-reduce-socio-economic-differentials-in-maternity-care-seeking-evidence-from-rural-bangladesh

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-disabled-people-in-urban-and-peri-urban-areas-country-report-mozambique

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-people-with-disabilities-in-urban-areas-inception-report

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/research-for-development-outputs/enhanced-accessibility-for-persons-with-disabilities-living-in-urban-areas-country-report-south-africa

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-gender-pay-gap-data

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-registered-childminder

Rule: region

Impact: moderate Failure 1:
Failure 2: Failure 3:

https://gov.uk/government/consultations/accessible-travel-policy-guidance-accessibility-of-rail-replacement-services

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/news/global-accessibility-awareness-day-minister-calls-on-the-public-sector-to-ensure-digital-services-are-accessible

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/news/minister-announces-accessibility-improvements-to-voter-registration-service

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/government/news/new-funding-for-accessibility-as-government-reports-progress-for-disabled-people-across-transport-network

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/higher-education-courses-find-and-apply

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/service-manual/technology/accessibility-for-developers-an-introduction

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/aaib-reports/aaib-investigation-to-reims-cessna-f406-caravan-ii-g-find

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/aaib-reports/aaib-investigation-to-reims-cessna-f406-g-find

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/aaib-reports/huntair-pathfinder-g-mjjt-4-june-1983

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/aaib-reports/pathfinder-mk-1-g-mjjr-21-april-1990

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/aaib-reports/piper-pa-28-235-cherokee-pathfinder-g-bamm-19-june-1994

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/aaib-reports/reims-cessna-f406-caravan-ii-g-find-6-september-2007

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/employment-tribunal-decisions/mr-e-findlay-v-morrisons-utility-services-2600035-2017

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/adtech-market-research-report-2019-ico-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/communications-market-report-2019-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/communications-market-report-2020-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/connected-nations-uk-report-2020-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/consumer-views-on-cashless-payments-in-land-based-gambling-2021-gambling-commission

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/influencer-report-the-impact-of-complicit-social-media-influencers-on-the-consumption-of-counterfeit-goods-in-the-uk-2021-ipo

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-appendix-k-consumer-experiences-of-app-purchases-and-auto-renewing-subscriptions-to-apps-sold-through-app-stores-2022-cma

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-interim-report-appendix-f-understanding-the-role-of-browser-engines-2021-cma

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/mobile-ecosystems-market-study-interim-report-appendix-g-pre-installation-default-settings-and-choice-architecture-for-mobile-browsers-2021-cma

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/object-based-media-report-2021-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/online-market-failures-and-harms-an-economic-perspective-on-the-challenges-and-opportunities-in-regulating-online-services-2019-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/online-nation-report-2020-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/protecting-children-online-2020-2021-report-2021-asa

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/the-state-of-uk-competition-report-2022-cma

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/the-state-of-uk-competition-report-november-2020-cma

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/the-use-of-data-by-online-services-2019-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-digital-market-research/transparency-in-the-regulation-of-online-safety-research-report-for-ofcom-2021-ofcom

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-funding-for-land-or-farms/cnum1-assess-nutrient-management-and-produce-a-review-report

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/alcohol-duties-payments

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/childcare-service-helpline

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/complain-about-hmrc-online-services

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/construction-industry-scheme-payments

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/deferred-national-insurance-contributions-payments

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/excise-movement-and-control-system-online-services

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/miscellaneous-payments-team

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/new-computerised-transit-system-testing-services

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/non-uk-residents-payment

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/off-payroll-working-ir35-enquiries

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/payment-problems-enquiries

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/repayments-where-to-send-claim-forms

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/report-suspicious-hmrc-emails-texts-social-media-accounts-and-phone-calls

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/secure-data-exchange-service-sdes-enquiries

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/self-assessment-payments

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/statutory-payment-dispute-team

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/tax-credits-payment-enquiries

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-hmrc-contacts/vat-overseas-repayments-for-non-uk-businesses

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/adoption-service-registration-wales

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/adult-placement-service-registration-wales

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/adult-placement-services-registration-northern-ireland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/adult-placement-services-registration-scotland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/apply-for-a-thames-accommodation-licence

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/booking-office-licence-scotland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/bookmaker-s-premises-licence-scotland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/bookmaking-office-licence-northern-ireland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/care-at-home-services-registration-scotland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/care-home-service-registration-wales

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/domiciliary-care-service-registration-ni

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/fostering-service-manager-registration-wales

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/general-aviation-report-notification-northern-ireland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/pollution-data-reporting-scotland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/register-a-hairdressing-business

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/register-as-number-plate-supplier

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/register-cattle-northern-ireland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/register-hairdressing-wales

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/register-physiotherapist

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/register-to-practise-as-a-veterinarian

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/registration-independent-healthcare-service-scotland

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/registration-of-independent-health-care-service-england-wales

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/secure-accommodation-service-registration-wales

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/find-licences/vessel-traffic-services-vts-licence

Rule: region

Impact: moderate Failure 1:
Failure 2:

https://gov.uk/flood-and-coastal-erosion-risk-management-research-reports/adapting-to-coastal-erosion-evaluation-of-rollback-and-leaseback-schemes-in-coastal-change-pathfinder-projects

Rule: region

Impact: moderate Failure 1:
Failure 2: