All “legend” elements must describe the group of choices

Severity code: Information only

If a <code>legend element is used in a fieldset, the <code>legend content must describe the group of choices.

Example

Wrong

<fieldset>    <legend>Some fields:</legend>    <label for="name">Name:</label> <input type="text" size="30" id="name"/><br />    <label for="email">Email:</label> <input type="text" size="30" id="email"/><br /></fieldset>