From 9d7148ccbf94c4318c1e42bc9e877612cad69fb5 Mon Sep 17 00:00:00 2001
From: Tom Byers
Date: Tue, 29 Sep 2020 13:00:58 +0100
Subject: [PATCH] Remove issue related to focus shifting onload
The Digital Accessibility Centre (DAC) reported
that it was confusing that focus was moved to the
templates and folders search textbox when the page
loaded on the templates page.
We noted that this issue wasn't reported on the
page where you enter your SMS 2-factor code.
From this, we determined that pages with a single
task could benefit from focus moving to the part
of the page that lets you do that task.
Because of this we:
- found all the pages we shift focus on when they
load
- kept it for pages where the focus shift is
important for what users do on the page
- removed it for all other pages (including
templates)
The work was completed in:
https://github.com/alphagov/notifications-admin/pull/3622
This work also changed the label of the focused
element as a hack to get the page title read out.
This normally happens on load to indicate a
navigation has happened but didn't in Voiceover
when we focused an element on load.
After testing with JAWS and NVDA we found only
Voiceover does this. As Voiceover has the smallest
market share, and navigation can be inferred by
other mean, we removed it in:
https://github.com/alphagov/notifications-admin/pull/3673
That was deployed today.
---
app/templates/views/accessibility_statement.html | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/app/templates/views/accessibility_statement.html b/app/templates/views/accessibility_statement.html
index a9eed88b8..30ca7c8fc 100644
--- a/app/templates/views/accessibility_statement.html
+++ b/app/templates/views/accessibility_statement.html
@@ -41,7 +41,6 @@
low vision users cannot access the table we use to show CSV data when viewed at high zoom
screen reader users may find the process of moving templates and folders confusing
one page links to a PDF document that is not fully accessible
- screen readers users may be disorientated when pages load with the focus on a specific area
the Notify status page has several accessibility issues
@@ -105,10 +104,6 @@
Screen reader users may find the process of moving templates and folders confusing. This fails WCAG 4.1.2 success criteria (Name, role, value). We plan to fix this by November 2020.
-
- Screen reader users may find it confusing that a specific part of some pages is focused when they load. This fails WCAG 2.4.3 success criteria (Focus Order). We plan to fix this by October 2020.
-
-
PDFs and other documents
@@ -173,6 +168,6 @@
- This statement was prepared on 23 September 2020. It was last reviewed on 23 September 2020.
+ This statement was prepared on 23 September 2020. It was last reviewed on 29 September 2020.
{% endblock %}