Steven Lambert

Results 324 comments of Steven Lambert

Thanks for the issue. I've let the appropriate team know.

Thanks for the issue. So the `link-name` rule does not check if the name of the link is a duplicate. It only checks if the link has an accessible name...

Oh you're right. How interesting. I believe that is a doc error on our end as the rule definitely does not check for duplicate labels.

I agree. [Success Criterion 2.4.4](https://www.w3.org/WAI/WCAG21/Understanding/link-purpose-in-context.html) is intended to ensure that links can be understood from context alone, however axe-core is unable to determine programmatically if any link text would fail...

Results of testing the following HTML in various ATs ```html foo foo foo foo foo foo foo foo ``` * VO / Safari - skipped `aria-required=false` and didn't announce it,...

Thanks for the update. This one may be hard to do with our current architecture. What roles/attributes are allowed on HTML elements is handled by our [htlm-elms code](https://github.com/dequelabs/axe-core/blob/develop/lib/standards/html-elms.js#L861-L864). The code...

Yep, that one also would fall under this limitation. Looks like we'll have to figure out a way to handle this moving forward.

I just ran into this as well. In my case the hook was triggered in a Github action. I figured out that in Github actions the default shell is `dash`...

Good question. TileEngine doesn't really have anything to turn x/y coords into row/col coords. You could borrow [the two functions](https://github.com/straker/kontra/blob/main/src/tileEngine.js#L6-L30) to do that and then on click pass them the...