Details
-
Bug
-
Resolution: Fixed
-
Minor
-
1.0
-
None
-
None
Description
Using Radios or checkboxes, a additional fieldset is missing when the legend is empty. Radios and checkboxes have to wrapped with a fieldset and describe by an optional legend.
wrong:
<div>
<label for="field-1" id="">
<input type="checkbox" value="h" name="" id="field-1" />
Bitte rufen Sie mich schnellstmöglich zurück.
</label>
</div>
better:
<div>
<fieldset>
<legend>Legend</legend> (this is optional)
<label for="field-1">
<input type="checkbox" id="field-1" name="checkbox-grp1" />
<span>Checkboxoption 1</span>
</label>
</fieldset>
</div>
Checklists
Acceptance criteria