Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 2.17 KB

File metadata and controls

48 lines (36 loc) · 2.17 KB
Title Missing Form Control Label and Title Check
id input_01
type prop
elem inputLabel
test inputIdTitleNo
score 3
level A
trust 1
ref H65
scs 1.1.1,1.3.1,3.3.2,4.1.2
dis 53122
result failed

Missing Label and Title Check

Description

The "Missing Label and Title Check" evaluates whether any form input elements are missing accessible labels.

Example outcome

I identified 1 form control without an associated <label> element and without the title attribute.

Impact

  • Visual Impairments: Screen readers cannot announce the purpose of the form control, making it unusable.
  • Motor Impairments: People using voice input software (e.g., Dragon) may not be able to interact with the field without a name.
  • Cognitive Disabilities: Unlabeled controls increase cognitive load and can make forms unusable.

Fixes

To address form control elements missing a <label> and a title:

  1. Locate the form control element.
  2. Add, if possible, a <label> element and properly associate it with the <input> element using the for attribute.
  3. If you don't want to have a visible label, use the title attribute in the <input> element, providing a meaningful title.

Resources