content-editable-missing-attributes

⌘K
  1. Home
  2. SiteLint
  3. Accessibility Rules
  4. content-editable-missing-attributes

content-editable-missing-attributes

Print this article

Description

This rule verifies if elements with the attribute contenteditable have defined also following attributes:

  1. aria-multiline
  2. aria-labelledby or aria-label

Context

When aria-multiline="true" is set then Assistive Technologies informs the user that the textbox supports multi-line input, with the expectation that Enter or Return will create a line break rather than submitting the form.

aria-label here is recommended to specify a string to be used as the accessible label. Eventually, aria-labelledby can be used to specify the id of another element in the DOM as an element’s label.

How to fix it

The rule passes when all of the following cases are fulfilled:

  1. Attribute contenteditable is defined
  2. aria-label or aria-labelledby is defined. Note that the rule does not validate aria-labelledby ids if the referenced elements exist.

Techniques

Not Applicable

Was this article helpful to you? No Yes

How can we help?