Re: [Filter Effects][css3-transforms] Using MathML for formulas

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