summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/mathml/mo-accent/mo-accent-dynamic.html
blob: 4a5eca4c256a5c28ce2ffe40a32fbe31e141a410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <title>mo@accent</title>
    <meta charset="utf-8"/>
    <link rel="match" href="mo-accent-dynamic-ref.html"/>
    <script type="text/javascript">
      function doTest() {
        document.getElementById('mathOperator').setAttribute('accent', 'true');
        document.documentElement.removeAttribute("class");
      }
      window.addEventListener("TestRendered",doTest);
    </script>
  </head>
  <body>
    <math>
      <munderover><mtext>X</mtext><mo id="mathOperator">O</mo><mo>O</mo></munderover>
    </math>
  </body>
</html>