summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/mathml/tables/mstyle-align.html
blob: 396dbc599c30cfeb7e09dbebd6f60788c0cf2a0e (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>align attribute on mstyle/math</title>
<link rel="match" href="mstyle-align-ref.html" />
<meta name="assert" content="align attribute on mstyle/math does not apply to mtable descendants." />
<body>
  <math align="baseline">
    <mstyle align="baseline">
      <mrow>
        <mtext>_</mtext>
        <mtable>
          <mtr>
            <mtd>
              <mtext>&#x2015;</mtext>
            </mtd>
          </mtr>
          <mtr>
            <mtd>
              <mtext>&#x2015;</mtext>
            </mtd>
          </mtr>
        </mtable>
        <mtext>_</mtext>
      </mrow>
    </mstyle>
  </math>
</body>