A talk about the broken communication between the accessibility world and the developer world and a few ideas how to break down the wall between the two.
Figure and Figcaption
<figure>
<img src="bingresults.jpg"
alt="screenshot of Microsoft Bing">
<figcaption>
Figure 1: A search result page
</figcaption>
</figure>
ARIA needs IDs
<figure>
<img alt="screenshot of Microsoft Bing"
src="bingresults.jpg"
aria-describedby="figurecap0">
<figcaption id="figurecap0">
Figure 1: A search result page
</figcaption>
</figure>