Description
I can take a page which has zero warnings and then generate a warning by pasting in this HTML:
<table> <tr> <th scope="col">Foo</th> </tr> <tr> <td>Bar</td> </tr> </table>
This results in the following warning: "critical: scope attribute should be used correctly"
AFAICT, there is nothing wrong with how I am using scope in that markup -- scope="col" is valid in a TH and that is what the rule is checking. Except for some reason it is returning false somewhere along the line. I did see this closed issue on axe-core dequelabs/axe-core#244 but that issue pertains to not using an HTML 5 doctype, which I am using.
There's nothing wrong with my doctype and there's nothing wrong with my use of scope, unless I'm missing something.
When I use the Axe Chrome plugin-in, it does not complain about this rule.