summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/scripts/subsup-parameters-2.html
blob: 205697f4e4ff46b3b6854b19443adc106b3c3737 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Subscripts and Superscripts parameters</title>
<link rel="help" href="https://w3c.github.io/mathml-core/#subscripts-and-superscripts-msub-msup-msubsup">
<meta name="assert" content="Elements msub, msup, subsup and msubsup correctly use the italic correction from the MATH table.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/mathml/support/feature-detection.js"></script>
<script src="/mathml/support/fonts.js"></script>
<style>
  math, mspace {
    font-size: 10px;
  }
  @font-face {
    font-family: largeop-displayoperatorminheight5000;
    src: url("/fonts/math/largeop-displayoperatorminheight5000.woff");
  }
  @font-face {
    font-family: largeop-displayoperatorminheight2000-2AFF-italiccorrection3000;
    src: url("/fonts/math/largeop-displayoperatorminheight2000-2AFF-italiccorrection3000.woff");
  }
  @font-face {
    font-family: largeop-displayoperatorminheight7000-2AFF-italiccorrection5000;
    src: url("/fonts/math/largeop-displayoperatorminheight7000-2AFF-italiccorrection5000.woff");
  }
</style>
<script>
  function getBox(aId) {
    return document.getElementById(aId).getBoundingClientRect();
  }

  setup({ explicit_done: true });
  window.addEventListener("load", () => { loadAllFonts().then(runTests); });

  /*
    These two tests verify that:
    - In msub, the script is at the right of the base minus the italic correction.
    - In msup, the script is just at the right of the base.
    - In msubsup, the scripts are shifted by the italic correction.
    - In mmultiscripts, postscript pairs are shifted by the italic correction.
    - In mmultiscripts, prescript pairs are vertically aligned.
  */
  var epsilon = 1;
  var emToPx = 10 / 1000; // font-size: 10px, font.em = 1000
  function runTests() {
    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v = 0;
      assert_approx_equals(getBox("base001").right - getBox("sub001").left, v, epsilon, "msub");
      assert_approx_equals(getBox("sup002").left, getBox("base002").right, epsilon, "msup");
      assert_approx_equals(getBox("sup003").left - getBox("sub003").left, v, epsilon, "msubsup");
      assert_approx_equals(getBox("sup004").left - getBox("sub004").left, v, epsilon, "mmultiscripts postscripts");
      assert_approx_equals(getBox("sup005").left - getBox("sub005").left, 0, epsilon, "mmultiscripts prescripts");
    }, "Null Italic Correction");
    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v = 3000 * emToPx;
      assert_approx_equals(getBox("base011").right - getBox("sub011").left, v, epsilon, "msub");
      assert_approx_equals(getBox("sup012").left, getBox("base012").right, epsilon, "msup");
      assert_approx_equals(getBox("sup013").left - getBox("sub013").left, v, epsilon, "msubsup");
      assert_approx_equals(getBox("sup014").left - getBox("sub014").left, v, epsilon, "mmultiscripts postscripts");
      assert_approx_equals(getBox("sup015").left - getBox("sub015").left, 0, epsilon, "mmultiscripts prescripts");
    }, "NonNull Italic Correction (MathGlyphVariantRecord)");
    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v = 5000 * emToPx;
      assert_approx_equals(getBox("base021").right - getBox("sub021").left, v, epsilon, "msub");
      assert_approx_equals(getBox("sup022").left, getBox("base022").right, epsilon, "msup");
      assert_approx_equals(getBox("sup023").left - getBox("sub023").left, v, epsilon, "msubsup");
      assert_approx_equals(getBox("sup024").left - getBox("sub024").left, v, epsilon, "mmultiscripts postscripts");
      assert_approx_equals(getBox("sup025").left - getBox("sub025").left, 0, epsilon, "mmultiscripts prescripts");
    }, "NonNull Italic Correction (GlyphAssembly)");
    done();
  }
</script>
</head>
<body>
  <div id="log"></div>
  <h2>Null Italic Correction</h2>
  <p>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight5000;">
      <msub>
        <mo id="base001" lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub001" height="1em" width="1em" style="background: blue"/>
      </msub>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight5000;">
      <msup>
        <mo id="base002" lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sup002" height="1em" width="1em" style="background: blue"/>
      </msup>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight5000;">
      <msubsup>
        <mo lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub003" height="1em" width="1em" style="background: blue"/>
        <mspace id="sup003" height="1em" width="1em" style="background: green"/>
      </msubsup>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight5000;">
      <mmultiscripts>
        <mo lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub004" height="1em" width="1em" style="background: blue"/>
        <mspace id="sup004" height="1em" width="1em" style="background: green"/>
        <mprescripts/>
        <mspace id="sub005" height="1em" width="1em" style="background: magenta"/>
        <mspace id="sup005" height="1em" width="1em" style="background: cyan"/>
      </mmultiscripts>
    </math>
  </p>
  <h2>NonNull Italic Correction (MathGlyphVariantRecord)</h2>
  <p>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight2000-2AFF-italiccorrection3000;">
      <msub>
        <mo id="base011" lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub011" height="1em" width="1em" style="background: blue"/>
      </msub>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight2000-2AFF-italiccorrection3000;">
      <msup>
        <mo id="base012" lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sup012" height="1em" width="1em" style="background: blue"/>
      </msup>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight2000-2AFF-italiccorrection3000;">
      <msubsup>
        <mo lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub013" height="1em" width="1em" style="background: blue"/>
        <mspace id="sup013" height="1em" width="1em" style="background: green"/>
      </msubsup>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight2000-2AFF-italiccorrection3000;">
      <mmultiscripts>
        <mo lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub014" height="1em" width="1em" style="background: blue"/>
        <mspace id="sup014" height="1em" width="1em" style="background: green"/>
        <mprescripts/>
        <mspace id="sub015" height="1em" width="1em" style="background: magenta"/>
        <mspace id="sup015" height="1em" width="1em" style="background: cyan"/>
      </mmultiscripts>
    </math>
  </p>
  <h2>NonNull Italic Correction (GlyphAssembly)</h2>
  <p>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight7000-2AFF-italiccorrection5000;">
      <msub>
        <mo id="base021" lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub021" height="1em" width="1em" style="background: blue"/>
      </msub>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight7000-2AFF-italiccorrection5000;">
      <msup>
        <mo id="base022" lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sup022" height="1em" width="1em" style="background: blue"/>
      </msup>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight7000-2AFF-italiccorrection5000;">
      <msubsup>
        <mo lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub023" height="1em" width="1em" style="background: blue"/>
        <mspace id="sup023" height="1em" width="1em" style="background: green"/>
      </msubsup>
    </math>
    <math displaystyle="true" style="font-family: largeop-displayoperatorminheight7000-2AFF-italiccorrection5000;">
      <mmultiscripts>
        <mo lspace="0px" rspace="0px">&#x2AFF;</mo>
        <mspace id="sub024" height="1em" width="1em" style="background: blue"/>
        <mspace id="sup024" height="1em" width="1em" style="background: green"/>
        <mprescripts/>
        <mspace id="sub025" height="1em" width="1em" style="background: magenta"/>
        <mspace id="sup025" height="1em" width="1em" style="background: cyan"/>
      </mmultiscripts>
    </math>
  </p>
</body>
</html>