Bug: Accessibility checklist has invalid/duplicate `<legend>`
Created by: crgeary
It seems one of the <fieldset>
tags on the http://a11yproject.com/checklist.html page has two <legend>
tags as direct children. As far as I am aware, this is incorrect usage of the <legend>
as they must be the first child of a <fieldset>
which the latter is not.
The two in offending tags are:
<legend>Color and Contrast</legend>
<legend>Test for different types of color blindness.</legend>
Suggested fix:
Add </fieldset><fieldset>
on line 187