summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/operators/mo-lspace-rspace-dynamic-ref.html
blob: 85cabd287d9dd4f5cd5ec68e6083c6f88d617369 (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
43
44
45
46
47
48
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>&lt;mo&gt; dynamic lspace rspace (reference)</title>
    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
    <style>
      math, math * {
          font: 60px/1 Ahem;
      }
      mo {
          color: blue;
      }
    </style>
  </head>
  <body>
    <p>
      <math>
        <mn>1</mn><mo id="mo_attach_lspace" lspace="2em">X</mo><mn>2</mn>
      </math>
    </p>
    <p>
      <math>
        <mn>1</mn><mo id="mo_attach_rspace" rspace="3em">X</mo><mn>2</mn>
      </math>
    </p>
    <p>
      <math>
        <mn>1</mn><mo id="mo_modify_lspace" lspace="4em" rspace="1em">X</mo><mn>2</mn>
      </math>
    </p>
    <p>
      <math>
        <mn>1</mn><mo id="mo_modify_rspace" lspace="1em" rspace="5em">X</mo><mn>2</mn>
      </math>
    </p>
    <p>
      <math>
        <mn>1</mn><mo id="mo_remove_lspace" rspace="1em">X</mo><mn>2</mn>
      </math>
    </p>
    <p>
      <math>
        <mn>1</mn><mo id="mo_remove_rspace" lspace="1em">X</mo><mn>2</mn>
      </math>
    </p>
  </body>
</html>