summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/direction/direction-007-ref.html
blob: 5c77395f2008ba5e6f1068b345e8ff1c58f93ee4 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>mo and embellished mrow/munderover (lspace=1em rspace=2em)</title>
    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
    <style>
      math, math * {
          font: 25px/1 Ahem;
      }
    </style>
  </head>
  <body>

    <p>
      <math>
        <mtext>p</mtext><mo lspace="2em" rspace="1em">X</mo><mtext>p</mtext>
      </math>
    </p>

    <p>
      <math>
        <mtext>p</mtext>
        <mrow><mo lspace="2em" rspace="1em">X</mo></mrow>
        <mtext>p</mtext>
      </math>
    </p>

    <p>
      <math>
        <mtext>p</mtext>
        <munderover>
          <mo lspace="2em" rspace="1em">X</mo>
          <mtext>É</mtext>
          <mtext>É</mtext>
        </munderover>
        <mtext>p</mtext>
      </math>
    </p>

  </body>
</html>