Fieldset Disabled

Inputs in a disabled fieldset should not have a tab-index

by sstur

HTML

<input type="text" />
<fieldset disabled="disabled">
    <input type="text" />
    <input type="checkbox" />
    <input type="radio" />
    <select><option>One</option><option>Two</option></select>
</fieldset>
<input type="checkbox" />