summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/radicals/root-parameters-2.html
blob: 01d636b522d2e0a6bbb6604ed9969a92d23c0ace (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
<!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="Test edge kerning values for radicals.">
<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>
  @font-face {
      font-family: radical-negativekernbeforedegree1000-rulethickness1000;
      src: url("/fonts/math/radical-negativekernbeforedegree1000-rulethickness1000.woff");
  }
  @font-face {
      font-family: radical-kernafterdegreeminus5000-rulethickness1000;
      src: url("/fonts/math/radical-kernafterdegreeminus5000-rulethickness1000.woff");
  }
  math, mspace {
      font-size: 10px;
  }
  mspace {
      opacity: .5;
  }
</style>
<script>
  var emToPx = 10 / 1000; // font-size: 10px, font.em = 1000
  var epsilon = 1;

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

  function runTests() {
      test(function() {
          assert_true(MathMLFeatureDetection.has_mspace());
          assert_approx_equals(getBox("index001").left - getBox("mroot001").left,
                               0, epsilon, "should be clamped to 0");
      }, "RadicalKernBeforeDegree = -1em < 0");

      test(function() {
          assert_true(MathMLFeatureDetection.has_mspace());
          var radicalSymbolWidth = 1000 * emToPx;
          var radicalLeft = getBox("base002").left - radicalSymbolWidth;
          assert_approx_equals(getBox("index002").right - radicalLeft,
                               30, epsilon, "should be clamped to 3em");
      }, "RadicalKernBeforeAfterDegree = -5em < -3em = -degree's inline size");

      done();
  }

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

</script>
</head>
<body>
  <div id="log"></div>
  <p>
    <math style="font-family: radical-negativekernbeforedegree1000-rulethickness1000">
      <mroot id="mroot001">
        <mspace id="base001" height="6em" width="6em" style="background: blue"/>
        <mspace id="index001" height="6em" width="6em" style="background: green"/>
      </mroot>
    </math>
  </p>
  <hr/>
  <p>
    <math style="font-family: radical-kernafterdegreeminus5000-rulethickness1000">
      <mroot id="mroot002">
        <mspace id="base002" height="3em" width="3em" style="background: blue"/>
        <mspace id="index002" height="3em" width="3em" style="background: green"/>
      </mroot>
    </math>
  </p>
</body>
</html>