summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/radicals/root-parameters-1.html
blob: 7600c35c595b5d9d2e17d8d9e64f5cd67be6dccf (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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Radical parameters</title>
<link rel="help" href="https://w3c.github.io/mathml-core/#radicals-msqrt-mroot">
<meta name="assert" content="Elements msqrt and mroot correctly use the radical parameters 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: degreebottomraisepercent25-rulethickness1000;
    src: url("/fonts/math/radical-degreebottomraisepercent25-rulethickness1000.woff");
  }
  @font-face {
    font-family: displaystyleverticalgap7000-rulethickness1000;
    src: url("/fonts/math/radical-displaystyleverticalgap7000-rulethickness1000.woff");
  }
  @font-face {
    font-family: extraascender3000-rulethickness1000;
    src: url("/fonts/math/radical-extraascender3000-rulethickness1000.woff");
  }
  @font-face {
    font-family: kernafterdegreeminus5000-rulethickness1000;
    src: url("/fonts/math/radical-kernafterdegreeminus5000-rulethickness1000.woff");
  }
  @font-face {
    font-family: kernbeforedegree4000-rulethickness1000;
    src: url("/fonts/math/radical-kernbeforedegree4000-rulethickness1000.woff");
  }
  @font-face {
    font-family: verticalgap6000-rulethickness1000;
    src: url("/fonts/math/radical-verticalgap6000-rulethickness1000.woff");
  }
  @font-face {
    font-family: rulethickness8000;
    src: url("/fonts/math/radical-rulethickness8000.woff");
  }
</style>
<script>
  var emToPx = 10 / 1000; // font-size: 10px, font.em = 1000
  var epsilon = 1;

  function getBox(aId) {
    return document.getElementById(aId).getBoundingClientRect();
  }

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

  function runTests() {
    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v1 = 25;
      var v2 = 1000 * emToPx;
      var radicalHeight = getBox("base001").height + v2;
      assert_approx_equals(getBox("ref001").top - getBox("index001").bottom,
                           v1 * radicalHeight / 100, epsilon,
                           "mroot: vertical position of index");
    }, "RadicalDegreeBottomRaisePercent");

    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v1 = 7000 * emToPx;
      var v2 = 1000 * emToPx;
      assert_approx_equals(getBox("base0021").top - getBox("radical0021").top,
                           v1 + v2, epsilon,
                           "msqrt: vertical gap");
      assert_approx_equals(getBox("base0022").top - getBox("radical0022").top,
                           v1 + v2, epsilon,
                           "mroot: vertical gap");
    }, "RadicalDisplayStyleVerticalGap");

    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v1 = 3000 * emToPx;
      var v2 = 1000 * emToPx;
      assert_approx_equals(getBox("base0031").top - getBox("radical0031").top,
                           v1 + v2, epsilon,
                           "msqrt: vertical gap");
      assert_approx_equals(getBox("base0032").top - getBox("radical0032").top,
                           v1 + v2, epsilon,
                           "mroot: vertical gap");
    }, "RadicalExtraAscender");

    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      // Note: the size variants of U+221A in this font have width 1000.
      var v1 = 5000 * emToPx;
      var radicalSymbolWidth = 1000 * emToPx;
      var radicalLeft = getBox("base004").left - radicalSymbolWidth;
      assert_approx_equals(getBox("index004").right - radicalLeft,
                           v1, epsilon,
                           "mroot: kern after degree");
    }, "RadicalKernAfterDegree");

    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v1 = 4000 * emToPx;
      assert_approx_equals(getBox("index005").left - getBox("radical005").left,
                           v1, epsilon,
                           "mroot: kern before degree");
    }, "RadicalKernBeforeDegree");

    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v = 8000 * emToPx;
      assert_approx_equals(getBox("base0061").top - getBox("radical0061").top,
                           v, epsilon,
                           "msqrt: vertical gap");
      assert_approx_equals(getBox("base0062").top - getBox("radical0062").top,
                           v, epsilon,
                           "msqrt: vertical gap");
    }, "RadicalRuleThickness");

    test(function() {
      assert_true(MathMLFeatureDetection.has_mspace());

      var v1 = 6000 * emToPx;
      var v2 = 1000 * emToPx;
      assert_approx_equals(getBox("base0071").top - getBox("radical0071").top,
                           v1 + v2, epsilon,
                           "msqrt: vertical gap");
      assert_approx_equals(getBox("base0072").top - getBox("radical0072").top,
                           v1 + v2, epsilon,
                           "msqrt: vertical gap");
    }, "RadicalVerticalGap");

    done();
  }
</script>
</head>
<body>
  <div id="log"></div>
  <p>
    <math style="font-family: degreebottomraisepercent25-rulethickness1000;">
      <mspace id="ref001" width="3em" depth="1em" style="background: green"/>
      <mroot>
        <mspace id="base001" width="3em" height="10em" style="background: green"/>
        <mspace id="index001" width="3em" height="1em" style="background: blue"/>
      </mroot>
    </math>
  </p>
  <hr/>
  <p>
    <math display="block"
          style="font-family: displaystyleverticalgap7000-rulethickness1000;">
      <msqrt style="background: green" id="radical0021">
        <mspace id="base0021" width="3em" height="1em" style="background: blue"/>
      </msqrt>
      <mroot style="background: green" id="radical0022">
        <mspace id="base0022" width="3em" height="1em" style="background: blue"/>
        <mspace width="3em" height="1em" style="background: black"/>
      </mroot>
    </math>
  </p>
  <hr/>
  <p>
    <math style="font-family: extraascender3000-rulethickness1000;">
      <msqrt style="background: green" id="radical0031">
        <mspace id="base0031" width="3em" height="1em" style="background: blue"/>
      </msqrt>
      <mroot style="background: green" id="radical0032">
        <mspace id="base0032" width="3em" height="1em" style="background: blue"/>
        <mspace width="3em" height="1em" style="background: black"/>
      </mroot>
    </math>
  </p>
  <hr/>
  <p>
    <math style="font-family: kernafterdegreeminus5000-rulethickness1000;">
      <mroot>
        <mspace id="base004" width="3em" height="2em"  style="background: blue"/>
        <mspace id="index004" width="7em" height="1em" style="background: green"/>
      </mroot>
    </math>
  </p>
  <hr/>
  <p>
    <math style="font-family: kernbeforedegree4000-rulethickness1000;">
      <mroot id="radical005" style="background: blue">
        <mspace width="3em" height="1em"/>
        <mspace id="index005" width="3em" height="1em" style="background: green"/>
      </mroot>
    </math>
  </p>
  <hr/>
  <p>
    <math style="font-family: rulethickness8000;">
      <msqrt style="background: green" id="radical0061">
        <mspace id="base0061" width="3em" height="1em" style="background: blue"/>
      </msqrt>
      <mroot style="background: green" id="radical0062">
        <mspace id="base0062" width="3em" height="1em" style="background: blue"/>
        <mspace width="3em" height="1em" style="background: black"/>
      </mroot>
    </math>
  </p>
  <p>
    <math style="font-family: verticalgap6000-rulethickness1000;">
      <msqrt style="background: green" id="radical0071">
        <mspace id="base0071" width="3em" height="1em" style="background: blue"/>
      </msqrt>
      <mroot style="background: green" id="radical0072">
        <mspace id="base0072" width="3em" height="1em" style="background: blue"/>
        <mspace width="3em" height="1em" style="background: black"/>
      </mroot>
    </math>
  </p>
</body>
</html>