summaryrefslogtreecommitdiffstats
path: root/layout/reftests/mathml/displaystyle-2-ref.html
blob: d36a9ce5a9da50b7c10dd8b5d41c1c6c2a463c0c (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
<!DOCTYPE html>
<html>
  <head>
    <title>displaystyle</title>
    <meta charset="utf-8"/>
  </head>
  <body>

    <!-- Test the effect of displaystyle on munder, mover and munderover -->
    <math>
      <mstyle displaystyle="true">
        <munder><mo>O</mo><mo>O</mo></munder>
        <mover><mo>O</mo><mo>O</mo></mover>
        <munderover><mo>O</mo><mo>O</mo><mo>O</mo></munderover>
      </mstyle>
      <mstyle displaystyle="false">
        <msub><mo>O</mo><mo>O</mo></msub>
        <msup><mo>O</mo><mo>O</mo></msup>
        <msubsup><mo>O</mo><mo>O</mo><mo>O</mo></msubsup>
      </mstyle>
    </math>

  </body>
</html>