mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
722 B
HTML
29 lines
722 B
HTML
<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">
|
|
<!-- Note: each blank is a whitespace sequence "U+0020 U+0009 U+000a U+000d" and must not be modified! -->
|
|
<mfenced separators="
|
|
|
|
;
|
|
|
|
">
|
|
<mi>a</mi>
|
|
<mi>b</mi>
|
|
<mi>c</mi>
|
|
<mi>d</mi>
|
|
</mfenced>
|
|
<!-- Note: each blank is a whitespace sequence "U+0020 U+0009 U+000a U+000d" and must not be modified! -->
|
|
<mfenced separators="
|
|
|
|
,
|
|
|
|
;
|
|
|
|
.">
|
|
<mi>a</mi>
|
|
<mi>b</mi>
|
|
<mi>c</mi>
|
|
<mi>d</mi>
|
|
</mfenced>
|
|
</math>
|
|
</body>
|
|
</html>
|