summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/operators/mo-movablelimits-dynamic.html
blob: 647fc523217e6955f79a1be7a234395c27b46fae (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>