Those of us working on the front end of public sector websites and applications have a duty to ensure that our work meets the Web Content Accessibility Guidelines 2.1 (WCAG) at Level AA. But when interviewing developers who’ve not worked in the public sector before and seeing work produced by some agencies I have often been amazed at the lack of understanding and skill some have in this area.

This post is therefore structured to outline:

  • why this is something we have to do. I’ll focus on the legal requirements here rather than the broader case which I’ve made in other posts
  • what this means in practice and what you need to think about

Before we begin I’d like to underline two vital things:

  • The first is that an accessible experience will be a better experience for everyone and, if it is considered at the outset and throughout your projects, you will find it helps your team be more productive and avoid considerable unnecessary complexity for themselves and users in the end product
  • The second is that, while WCAG provides a strong framework for measuring technical accessibility there are aspects of accessible design that cannot be codified into a Success Criterion. We therefore have to think beyond the WCAG criteria to ensure an interface is usably accessible. While it will usually be left to a developer to test for technical accessibility, it is the responsibility of the whole team to understand that conformance with WCAG does not necessarily mean an interface is usably accessible and be vigilant about things that might present problems

…when designers, developers, and project managers approach accessibility as a checklist to meet these standards, the focus is only on the technical aspects of accessibility. As a result, the human interaction aspect is often lost, and accessibility is not achieved.

Combining accessibility standards and usability processes with real people ensures that web design is technically and functionally usable by people with disabilities. This is referred to as usable accessibility or accessible user experience (UX). - Accessibility, Usability and Inclusion (W3C)

Keeping accessibility in mind throughout the process of designing and developing will be better for everyone.

Common questions

Do I have to meet WCAG 2.1?

Put simply: if you are working for a public sector site or application your employer is legally obliged to meet WCAG 2.1 AA. This obligation isn’t new - as far back as the Equality Act 2010 there has been a duty. But the new regulations have (rightly, thankfully and finally) stepped up the monitoring and enforcement of these obligations.

In practical terms this means the Central Digital and Data Office (CDDO) within Cabinet Office are actively monitoring public sector websites for conformance with WCAG 2.1 at Level AA and providing information of failures to the Equality and Human Rights Commission (EHRC) where an organisation fails to meet their obligations. EHRC will then use their legal powers against organisations that don’t meet the duty.

What does meeting WCAG 2.1 mean in practice?

This is an area where people have significant misconceptions but the conformance section of WCAG 2.1 explains what it means to meet the standard.

In summary, for a web page to be conformant with WCAG 2.1 at Level AA it must:

  • satisfy all success criterion at both Level A and Level AA (this would include all states - for example, following a validation failure or an update following an asynchronous call for content), or
  • provide a conforming alternate version

What is a conforming alternate version?

Sometimes people - even expert and highly experienced web professionals - will misinterpret ‘conforming alternate version’. A common scenario I’ve encountered is the perception that this permits a textual description of a rich but inaccessible experience. I’ve often seen this in the field of visualisation where a designer might propose a couple of descriptive sentences as an ‘alternative’ to a highly complex interactive dendrogram with thousands of nodes.

Fortunately, the meaning has been defined as being a version that:

  • conforms (obviously)
  • provides all the same functionality and in the same language
  • is as up to date as the non-conforming version
  • can be reached (obviously)

Development teams seeking the ‘conforming alternate version’ path should be aware that they will almost certainly need to design, build and maintain two versions - effectively doubling your work (and the corresponding cost of your product) over the short, medium and long term.

It is far better for your users, your team and your employer to shape your products based on meeting user needs in a way that is accessible.

What are the provisions of conformance?

Several other common misconceptions can be clarified by referring to the five provisions of conformance requirements.

Requirement 1. There is a conformance level

This can be thought of as Level A, AA or AAA having been met in full.

There are two parts to this: the first is deciding on a level - usually AA. The second is verifying that all relevant Success Criteria are met.

Requirement 2. Full pages

This provision simply requires that the whole page conform. If you have a page that is mostly compliant but includes an inaccessible component, then the whole page is considered inaccessible. The specification says statements about “part of a page conforming” cannot be made.

Requirement 3. Complete processes

Similar to full pages, this provision prevents a Web page that is part of a larger process from being considered conforming if the process overall is not.

Requirement 4. Only Accessibility-Supported Ways of Using Technologies

From a developer’s perspective ‘accessibility-supported’ can be thought of as ensuring that what you do to make things accessible is done in a way that user agents including assistive technologies can find and display to the user. You can’t, for example, make up your own ARIA roles.

Great detail on this is provided in the documentation but you can almost think of this as being loosely equivalent to the challenges front end developers face when using newer features of HTML5, CSS and JavaScript since they might not be available in all user agents.

The key is that the content has been tested for interoperability with assistive technology that are available to users (i.e. don’t just test with a single advanced AT which costs thousands).

The WCAG Working group and the W3C do not specify which or how much support by assistive technologies there must be for a particular use of a Web technology in order for it to be classified as accessibility supported. That said, The GOV.UK Service Standard does list the technologies that must be met as a minimum.

Requirement 5. Non-interference

Non-interference means that technologies that are not accessibility supported can be used, as long as all the information is also available using technologies that are accessibility supported and as long as the non-accessibility-supported material does not interfere. This is potentially confusing but here’s an illustrative example from W3C:

A Web page incorporates a new interactive graphic technology called “ZAP”. Although ZAP is accessibility-supported, the information that is presented in ZAP is also presented on the page in HTML, so ZAP is not relied upon. So, this page would pass conformance requirement #1. However, if the user tries to tab through the ZAP content, the focus drops into the ZAP object and gets stuck there. Once inside, there is nothing the user can do to get the focus back out. So keyboard users cannot use the bottom half of the page. The ZAP content also is continually flashing brightly at different rates and doesn’t stop. So, people with attention deficit are distracted and those with photosensitive seizure disorders may have seizures. Conformance requirement #5 prevents situations like these from being possible on a conforming page.

Key points: The key things to take away here are:

  • Public Sector Bodies have a legal duty to meet WCAG Level AA. Monitoring and enforcement is in place.
  • While the accessibility of any site can be considered on a continuum - from highly inaccessible to very inclusive - meeting WCAG 2.1 at Level AA is binary. A site either meets all of Level AA, or it does not.
  • Bear in mind that meeting WCAG 2.1 at Level AA does not necessarily mean a page is usably accessible. While it will usually fall to a technical member of staff to review technical accessibility, the whole team need to ensure the site is usably accessible. This is one of the reasons testing with users of asssistive technology is so important.
  • Failures cascade - a failing component causes a whole page to fail, and a failing page causes a journey to fail.