Re: [a11yapi] Patterns (#28)

> +  }
> +}
> +</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