summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/presentation-markup/operators/mo-movablelimits-default.html
blob: 4d6ee00d82b3f7ac12dd05e7042ca6665d5c7f8c (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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>&lt;mo&gt; movablelimits default value</title>
    <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo">
    <meta name="assert" content="Verifies default value of movablelimits for some operators.">
    <link rel="match" href="mo-movablelimits-default-ref.html">
  </head>
  <body>
    <math>
      <munder>
        <mo></mo> <!-- This has movablelimits="true" in the operator dictionary -->
        <mi>x</mi>
      </munder>
      <munder>
        <mo></mo> <!-- This has movablelimits="false" in the operator dictionary -->
        <mi>x</mi>
      </munder>
    </math>
    <script src="/mathml/support/feature-detection.js"></script>
    <script>MathMLFeatureDetection.ensure_for_match_reftest("has_munderover");</script>
  </body>
</html>