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
Comment #1
merlinofchaos commented#616956: Labels in exposed fielters doesn't have "for" attributes.
Comment #2
dawehnerThis was fixed in another issue. http://drupal.org/cvs?commit=290850
Thanks for providing the information, anyway.