summaryrefslogtreecommitdiffstats
path: root/layout/reftests/mathml/mfenced-6.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/mathml/mfenced-6.html')
-rw-r--r--layout/reftests/mathml/mfenced-6.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/mathml/mfenced-6.html b/layout/reftests/mathml/mfenced-6.html
new file mode 100644
index 000000000..54a784e3e
--- /dev/null
+++ b/layout/reftests/mathml/mfenced-6.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML>
+<html>
+ <body>
+
+ <!-- Too many separators: Excess is ignored -->
+ <math>
+ <mfenced separators=";;;;,,,,">
+ <mi>a</mi>
+ <mi>b</mi>
+ <mi>c</mi>
+ <mi>d</mi>
+ <mi>e</mi>
+ </mfenced>
+ </math>
+
+ <!-- Too few separators: Last separator is repeated -->
+ <math>
+ <mfenced separators=";;,">
+ <mi>a</mi>
+ <mi>b</mi>
+ <mi>c</mi>
+ <mi>d</mi>
+ <mi>e</mi>
+ </mfenced>
+ </math>
+
+ </body>
+</html>