Table elements missing accessibility warnings that other elements have.
The issue reports that table row elements (tr) don't trigger the same accessibility warnings about click events needing keyboard events as other HTML elements do. This appears to be a missing case in the compiler's accessibility checks. The fix would involve updating the compiler's warning logic to include table-related elements.
<!-- a11y_click_events_have_key_events -->
<div onclick={() => {}}></div>
<span onclick={() => {}}></span>
<h1 onclick={() => {}}></h1>
<section onclick={() => {}}></section>
<!-- no warning -->
<tr onclick={() => {}}></tr>
https://svelte.dev/playground/4cbe7c2ed42b498089cfa612de9516fd?version=latest
playground
annoyance
Claim this issue to let others know you're working on it. You'll earn 10 points when you complete it!