Summary: The HTML formatter template packages/formatter-html/src/views/partials/scan-result.ejs was emitting aria-control="categories-list" in generated reports. aria-controlis not a valid ARIA attribute (the correct attribute isaria-controls`), which causes accessibility linters and tools like webhint to flag generated reports.
Fix: A change was made replacing aria-control %u2192 aria-controls, adding a regression test, and updating the CHANGELOG. The branch is named copilot/willing-chipmunk (may be in a fork).
Note: I could not find an open PR in the upstream repo for this branch. If a PR exists, please attach the link and I will add it to this issue.
Request: Please add labels bug and accessibility, request reviewer attention, and backport if required.
Repro: Generate an HTML report and inspect the button element for the invalid attribute.
Files: packages/formatter-html/src/views/partials/scan-result.ejs (and compiled / dist versions).