- From: Cameron McCormack <cam@mcc.id.au>
- Date: Wed, 30 May 2012 16:35:29 +1000
- To: Steve Faulkner <faulkner.steve@gmail.com>
- CC: dpvc@union.edu, dschulze@adobe.com, vhardy@adobe.com, W3C WAI-XTECH <wai-xtech@w3.org>
Steve Faulkner:
> There is MathSpeak http://www.gh-mathspeak.com/examples/grammar-rules/
Thanks, I'll take a look.
> in regards to adding ARIA to MathML, from limited testing I have
> conducted it does not work currently.
> I am guessing you are talking about adding it to the <math> element?
I'm adding it to a <div> that contains the <math> element. This is the
markup I'm currently aiming for:
<style>
div[role="math"] > pre {
position: absolute;
width: 400px;
overflow: hidden;
left: -400px;
}
</style>
<div role="math"
aria-label="[reading of the math]"
aria-describedby="x">
<math ...>
...
</math>
<pre id="x">plain text, code-looking version of the math</pre>
</div>
I'll gladly take suggestions on improving this.
Received on Wednesday, 30 May 2012 06:37:53 UTC