diff options
Diffstat (limited to 'htdocs/dev/tests')
-rwxr-xr-x | htdocs/dev/tests/xhtml-mathml2.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/htdocs/dev/tests/xhtml-mathml2.html b/htdocs/dev/tests/xhtml-mathml2.html new file mode 100755 index 0000000..b708c25 --- /dev/null +++ b/htdocs/dev/tests/xhtml-mathml2.html @@ -0,0 +1,27 @@ +<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> + +<head> +<title>MathML's Hello Square</title> +</head> + +<body> + +<p> This is a perfect square:</p> + +<math xmlns="http://www.w3.org/1998/Math/MathML"> +<mrow> +<msup> + <mfenced> + <mrow> + <mi>a</mi> + <mo>+</mo> + <mi>b</mi> + </mrow> + </mfenced> + <mn>2</mn> +</msup> +</mrow> +</math> + +</body> +</html> |