Why does this accessible grouping of radio buttons rely on `<fieldset>` and `<legend>` rather than a `<label>`?
<fieldset>
<legend>Shipping speed</legend>
<label><input type="radio" name="s" value="std"> Standard</label>
<label><input type="radio" name="s" value="exp"> Express</label>
</fieldset>