diff options
Diffstat (limited to 'layout/reftests/mathml/mfenced-1-ref.xhtml')
-rw-r--r-- | layout/reftests/mathml/mfenced-1-ref.xhtml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/mathml/mfenced-1-ref.xhtml b/layout/reftests/mathml/mfenced-1-ref.xhtml new file mode 100644 index 000000000..97e75d204 --- /dev/null +++ b/layout/reftests/mathml/mfenced-1-ref.xhtml @@ -0,0 +1,21 @@ +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>Check whether whitespaces are ignored in the "separators" attribute of the mfenced tag</title> + </head> +<body> + <math xmlns="http://www.w3.org/1998/Math/MathML"> + <mfenced separators=";"> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + <mi>d</mi> + </mfenced> + <mfenced separators=",;."> + <mi>a</mi> + <mi>b</mi> + <mi>c</mi> + <mi>d</mi> + </mfenced> + </math> +</body> +</html> |