Now, the labels in the exposed filters forms are not associated with an input, what is not compliant with AA-level accessibility. In order to get compliant with standard of accessibility, labels should contain the attribute "for".

Now (not-compliant):

<label>Label of an input</label>
<input type="text" name="input_of_example" />

Compliant:

<label for="input_of_example">Label of an input</label>
<input type="text" name="input_of_example" />

Comments

merlinofchaos’s picture

dawehner’s picture

Status: Closed (duplicate) » Fixed

This was fixed in another issue. http://drupal.org/cvs?commit=290850

Thanks for providing the information, anyway.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.