summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/operators/munderover-accent-dynamic-001.html
blob: 6c3bc0d83002292fef534c453ea5a10edfa22c3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <title>munderover@accent</title>
    <meta charset="utf-8"/>
    <link rel="help" href="https://www.w3.org/TR/mathml-core/#underscripts-and-overscripts-munder-mover-munderover">
    <meta name="assert" content="Verifies invalidation after accent attribute is dynamically set.">
    <link rel="match" href="munderover-accent-dynamic-001-ref.html">
    <script>
      function doTest() {
        document.getElementById('mathOperator').setAttribute('accent', 'true');
        document.documentElement.removeAttribute("class");
      }
      window.addEventListener("TestRendered",doTest);
    </script>
  </head>
  <body>
    <math>
      <munderover id="mathOperator"><mtext>X</mtext><mo>O</mo><mo>O</mo></munderover>
    </math>
  </body>
</html>