You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before fixing the errors mentioned in this issue make sure the issues #1036, #1037, #1038 and #1039 are done. They are more context oriented and this issue can only be fixed if the context is reasonable (semantic structure, header levels and tab order)
Errors:
- Missing form labels:
Case 1: <input style="display: none" name="clang" value="fi" id="lang-input">
A form control does not have a corresponding label.
What To Do:
If a text label for a form control is visible, use the element to associate it with its respective form control. If there is no visible label, either provide an associated label, add a descriptive title attribute to the form control, or reference the label(s) using aria-labelledby. Labels are not required for image, submit, reset, button, or hidden form controls.
A form label is present, but it is not correctly associated with a form control.
What To Do:
Properly associate the label with its corresponding form control. If there is no corresponding form control, remove the label. Labels are not appropriate for image, submit, reset, button, or hidden form controls.
- Missing fieldset:
Case 1: <input name="anylang" type="checkbox">
What It Means
A group of check boxes or radio buttons is not enclosed in a fieldset.
What To Do
Determine whether the grouping of check boxes or radio buttons has or needs text that explains the purpose of the check boxes or radio button grouping. If so, mark up the group within a fieldset and put the group description in a legend element.
- Redundant link:
Case 1:
<a class="propertyvalue hidden-breadcrumb" href="yso/en/page/p8691?clang=fi">
ominaisuudet
</a>
Case 2:
<a href="yso/en/page/p1310?clang=fi">
energia
</a>
What It Means
Adjacent links go to the same URL.
reasonable
What To Do
If possible, combine the redundant links into one link and remove any redundant text or alternative text (for example, if a product image and product name are in the same link, the image can usually be given alt="").
The text was updated successfully, but these errors were encountered:
Check up by visiting http://finto.fi/yso/en/page/p7972?clang=fi
Before fixing the errors mentioned in this issue make sure the issues #1036, #1037, #1038 and #1039 are done. They are more context oriented and this issue can only be fixed if the context is reasonable (semantic structure, header levels and tab order)
- Missing form labels:
Case 1:
<input style="display: none" name="clang" value="fi" id="lang-input">
Case 2:
<input name="anylang" type="checkbox">
Case 3:
<input type="radio" id="all-languages-true" name="anylang" value="on" onclick="createCookie('SKOSMOS_SEARCH_ALL', this.value , 365);">
A form control does not have a corresponding label.
What To Do:
If a text label for a form control is visible, use the element to associate it with its respective form control. If there is no visible label, either provide an associated label, add a descriptive title attribute to the form control, or reference the label(s) using aria-labelledby. Labels are not required for image, submit, reset, button, or hidden form controls.
- Empty button:
Case 1:
Case 2:
What It Means
A button is empty or has no value text.
What To Do
Place text content within the element or give the element a value attribute.
- Orphaned form label:
Case 1:
Case 2:
A form label is present, but it is not correctly associated with a form control.
What To Do:
Properly associate the label with its corresponding form control. If there is no corresponding form control, remove the label. Labels are not appropriate for image, submit, reset, button, or hidden form controls.
- Missing fieldset:
Case 1:
<input name="anylang" type="checkbox">
What It Means
A group of check boxes or radio buttons is not enclosed in a fieldset.
What To Do
Determine whether the grouping of check boxes or radio buttons has or needs text that explains the purpose of the check boxes or radio button grouping. If so, mark up the group within a fieldset and put the group description in a legend element.
- Redundant link:
Case 1:
Case 2:
What It Means
Adjacent links go to the same URL.
reasonable
What To Do
If possible, combine the redundant links into one link and remove any redundant text or alternative text (for example, if a product image and product name are in the same link, the image can usually be given alt="").
The text was updated successfully, but these errors were encountered: