summaryrefslogtreecommitdiffstats
path: root/htdocs/dev/tests
diff options
context:
space:
mode:
authorgerald <gerald@localhost>2000-12-11 07:11:27 +0000
committergerald <gerald@localhost>2000-12-11 07:11:27 +0000
commit75e413fc3d32132ceb08769509d8e4e35c283937 (patch)
tree6b4162236840b545d04a14fc1f669abd9ea74cff /htdocs/dev/tests
parent81ea11b6d7eb9750fbcbaf7697a3303c803ebfa8 (diff)
downloadmarkup-validator-75e413fc3d32132ceb08769509d8e4e35c283937.zip
markup-validator-75e413fc3d32132ceb08769509d8e4e35c283937.tar.gz
markup-validator-75e413fc3d32132ceb08769509d8e4e35c283937.tar.bz2
XHTML and MathML2 test case, copied here from
http://www.w3.org/TR/2000/CR-MathML2-20001113/chapter2.html#N1783 (amended to fix an error: missing less-than before '/title>' )
Diffstat (limited to 'htdocs/dev/tests')
-rwxr-xr-xhtdocs/dev/tests/xhtml-mathml2.html27
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>