summaryrefslogtreecommitdiffstats
path: root/layout/reftests/mathml/mfenced-6.html
blob: 54a784e3ec805ed1c1ec428f7fd0db5791793125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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>