mo-movablelimits-default.html (867B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title><mo> movablelimits default value</title> 6 <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo"> 7 <meta name="assert" content="Verifies default value of movablelimits for some operators."> 8 <link rel="match" href="mo-movablelimits-default-ref.html"> 9 </head> 10 <body> 11 <math> 12 <munder> 13 <mo>∑</mo> <!-- This has movablelimits="true" in the operator dictionary --> 14 <mi>x</mi> 15 </munder> 16 <munder> 17 <mo>∫</mo> <!-- This has movablelimits="false" in the operator dictionary --> 18 <mi>x</mi> 19 </munder> 20 </math> 21 <script src="/mathml/support/feature-detection.js"></script> 22 <script>MathMLFeatureDetection.ensure_for_match_reftest("has_munderover");</script> 23 </body> 24 </html>