summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/tokens/dynamic-mtext-like-001.html
blob: 8e42f7fa1797a0429dae47be4859d5c828c9f015 (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
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="utf-8">
<title>Dynamic mtext-like elements</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<link rel="help" href="https://w3c.github.io/mathml-core/#text-mtext">
<script src="/mathml/support/mathml-fragments.js"></script>
<meta name="assert" content="Dynamically set children of mtext-like elements.">
<style>
  math {
      font: 25px/1 Ahem;
      background: lightblue;
  }
  li {
      padding: 2px;
  }
</style>
<link rel="match" href="dynamic-mtext-like-001-ref.html">
<script>
  window.addEventListener("load", function() {

      // force initial layout so we're sure what we're testing against
      document.documentElement.getBoundingClientRect();

      Array.from(document.getElementsByClassName("testedElement")).forEach(e => {
          if (e.textContent === "")
              e.textContent = "É";
          else if (e.textContent === "X")
              e.textContent = "pX";
          else if (e.textContent === "p") {
              while (e.firstChild)
                  e.removeChild(e.firstChild);
              e.insertAdjacentHTML("beforeend", "<span>Xp</span>")
          }
      });

      document.documentElement.classList.remove('reftest-wait');
  });
</script>
</head>
<body>
  <ol>
    <li><math><mtext class="testedElement"></mtext></math></li>
    <li><math><mtext class="testedElement">X</mtext></math></li>
    <li><math><mtext class="testedElement">p</mtext></math></li>
    <li><math><mi class="testedElement"></mi></math></li>
    <li><math><mi class="testedElement">X</mi></math></li>
    <li><math><mi class="testedElement">p</mi></math></li>
    <li><math><mn class="testedElement"></mn></math></li>
    <li><math><mn class="testedElement">X</mn></math></li>
    <li><math><mn class="testedElement">p</mn></math></li>
    <li><math><mo class="testedElement"></mo></math></li>
    <li><math><mo class="testedElement">X</mo></math></li>
    <li><math><mo class="testedElement">p</mo></math></li>
    <li><math><mo class="testedElement"></mo></math></li>
    <li><math><mo class="testedElement">X</mo></math></li>
    <li><math><mo class="testedElement">p</mo></math></li>
    <li><math><ms class="testedElement"></ms></math></li>
    <li><math><ms class="testedElement">X</ms></math></li>
    <li><math><ms class="testedElement">p</ms></math></li>
    <!-- HTML parser does not accept span as a child of annotation or
         annotation-xml, so we can't test dynamic VS static. -->
    <li><math><annotation class="testedElement"></annotation></math></li>
    <li><math><annotation class="testedElement">X</annotation></math></li>
    <li><math><annotation-xml class="testedElement"></annotation-xml></math></li>
    <li><math><annotation-xml class="testedElement">X</annotation-xml></math></li>
  </ol>
</body>
</html>