w3c / html-aria

ARIA in HTML
https://w3c.github.io/html-aria/
Other
179 stars 48 forks source link

Create normative requirements for allowed descendants of explicit ARIA roles #362

Open scottaohara opened 2 years ago

scottaohara commented 2 years ago

Presently section four, allowed descendant of ARIA roles, is marked as non-normative.

The next version of ARIA in HTML will be revising this section to create both normative and non-normative sub-sections. Things we should keep / expand upon:

scottaohara commented 2 years ago

another example we talked about today would be ensuring this section covered the following:

<button>
  <span role=article>...</article>
</button>

or

<p>
  <span role=article>...</article>
</p>

etc