mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 17:05:38 +00:00
29 lines
519 B
HTML
29 lines
519 B
HTML
<!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>
|