summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/operators/mo-movablelimits-dynamic.html
blob: cf6d0ffa5b6b91ec4011a0c2d3ea28bf14b21ab5 (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
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <meta charset="utf-8"/>
    <title>Test dynamically removing movablelimits attribute</title>
    <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo">
    <link rel="help" href="https://w3c.github.io/mathml-core/#dom-and-javascript">
    <meta name="assert" content="Verifies dynamically removing movablelimits.">
    <link rel="match" href="mo-movablelimits-dynamic-ref.html">
    <script>
      window.addEventListener("load", () => {
        document.getElementById('a').removeAttribute('movablelimits');
        document.documentElement.classList.remove('reftest-wait');
      });
    </script>
  </head>
  <body>
    <math>
      <munder>
        <mo id="a" movablelimits="false"></mo>
        <mi>x</mi>
      </munder>
    </math>
    <script src="/mathml/support/feature-detection.js"></script>
    <script>MathMLFeatureDetection.ensure_for_match_reftest("has_munderover");</script>
  </body>
</html>