Question on MathML maction tag in Firefox+MathJax.

Frédéric Wang mentioned in his post (http://lists.w3.org/Archives/Public/www-math/2012Aug/0007.html) that Firefox version 15 has some bug fixes to the maction element. My tool generated some MathML for Firefox native and Firefox+MathJax and I noticed the following while testing on Firefox 15:

Statusline works in Firefox native but not in Firefox+MathJax. Tooltip works in Firefox+MathJax but not in Firefox native as the following two examples illustrate.

Please help. You can test the examples below by copying and saving as .htm files.

Thanks,
Saf

////////Firefox 15 native example///////////

<!DOCTYPE html>
<html>
<head></head>
<body>
<h3>Firefox native: Statusline works but not the Tooltip.</h3>
<p>Tooltip test:</p>
<math><maction actiontype='tooltip'><mrow><msup><mi>x</mi><mn>3</mn></msup></mrow><mtext>x cubed</mtext></maction></math>
<p>Statusline test:</p>
<math><maction actiontype='statusline'><mrow><msup><mi>x</mi><mn>2</mn></msup></mrow><mtext>x squared</mtext></maction></math>
</body>
</html>

////////MathJax on Firefox 15 example///////////

<html>
<head><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</head>
<body>
<h3>Firefox+MathJax: Tooltip works but not the Statusline.</h3>
<p>Tooltip test:</p>
<math><maction actiontype='tooltip'><mrow><msup><mi>x</mi><mn>3</mn></msup></mrow><mtext>x cubed</mtext></maction></math>
<p>Statusline test:</p>
<math><maction actiontype='statusline'><mrow><msup><mi>x</mi><mn>2</mn></msup></mrow><mtext>x squared</mtext></maction></math>
</body>
</html>

Received on Sunday, 2 September 2012 21:27:14 UTC