- From: Marcos Caceres <notifications@github.com>
- Date: Thu, 19 Nov 2015 19:18:54 -0800
- To: WICG/a11yapi <a11yapi@noreply.github.com>
Received on Friday, 20 November 2015 03:19:22 UTC
> + }
> +}
> +</pre>
> + </section>
> + </section>
> + <section>
> + <h2>
> + TaxoLibrary dictionary
> + </h2>
> + <p>
> + A collection of taxonomies extensions to the document's taxonomies.
> + </p>
> + <pre class="idl">
> +dictionary TaxoLibrary {
> + DOMString id;
> + object roles;
I'm not sure, but `object` might not be the right type here. You might need different dictionary types of each of these. Like:
```
{
AccessibleState states;
}
dictionary AccessibleState {
DOMString state;
DOMString foo;
}
```
---
Reply to this email directly or view it on GitHub:
https://github.com/WICG/a11yapi/pull/28/files#r45432407
Received on Friday, 20 November 2015 03:19:22 UTC