Deepcrawl is now Lumar. Read more.
DeepcrawlはLumarになりました。 詳細はこちら

ARIA widget role missing attributes (WCAG 2.0 Level A Issue)

Post cover image showing clasped hands - representing website accessibility projects
NULL NULL
 

What does this accessibility issue mean?

Check for the correct use of the aria-required attribute on form elements that require user input.

This attribute is used to indicate that a form input is required to be filled out before the form can be submitted.

Issue details

Lumar can help you find & resolve this website accessibility issue — & many others — on your own site. Speak to our team to get started with the platform.

Get a Lumar demo
 

Example HTML violation: ARIA widget role missing attributes (WCAG 2.0 Level A Issue)

<!DOCTYPE html>
<html lang="en" class="no-js">
  <head></head>
  <body>
    <title>Examples of aria-required-attr violation</title>
    <meta charset="UTF-8">
    <div role="checkbox"></div>
  </body>
</html>

The above HTML violates the aria-required-attr accessibility rule because it includes a div element with a role of checkbox, but it does not have the required aria-checked attribute.

According to the rule, elements with certain ARIA roles must have specific required ARIA attributes.

In this case, the aria-checked attribute is necessary for the div element with the role of checkbox.

 

How to fix "ARIA widget role missing attributes (WCAG 2.0 Level A Issue)" issue

<!DOCTYPE html>
<html lang="en" class="no-js">
  <head></head>
  <body>
    <title>Examples of aria-required-attr violation</title>
    <meta charset="UTF-8">
    <div role="checkbox" aria-checked="false"></div>
  </body>
</html>

In this HTML, aria-checked attribute is added with a value of "false". According to the W3C Web Accessibility Initiative (WAI), the aria-checked state indicates whether the element is selected (true), not selected (false), or neither (mixed). As the checkbox is not selected in this case, we set aria-checked to false.

For more details on ARIA roles and required attributes, check out the WAI ARIA Practices guide.

 
Digital Accessibility + SEO + Website Health

Build better online experiences — explore the full Lumar platform