mo-not-in-dictionary-movablelimits.html (1477B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title>movablelimits default value for unknown operators</title> 6 <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo"> 7 <meta name="assert" content="Verifies that the default movablelimits is false for entries that are not in the operator dictionary."> 8 <link rel="match" href="mo-not-in-dictionary-movablelimits-ref.html"> 9 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 10 <style> 11 math { 12 font: 50px/1 Ahem; 13 } 14 mo { 15 color: blue; 16 } 17 </style> 18 </head> 19 <body> 20 <p>This test passes if the black scripts are attached above and below 21 the corresponding blue base.</p> 22 <p> 23 <math> 24 <munderover> 25 <mo>X</mo> <!-- Single character --> 26 <mn>X</mn> 27 <mn>X</mn> 28 </munderover> 29 </math> 30 </p> 31 <p> 32 <math> 33 <munderover> 34 <mo>XX</mo> <!-- Multiple characters --> 35 <mn>X</mn> 36 <mn>X</mn> 37 </munderover> 38 </math> 39 </p> 40 <p> 41 <math> 42 <munderover> 43 <mo form="infix">X</mo> <!-- Explicit form --> 44 <mn>X</mn> 45 <mn>X</mn> 46 </munderover> 47 </math> 48 </p> 49 <script src="/mathml/support/feature-detection.js"></script> 50 <script>MathMLFeatureDetection.ensure_for_match_reftest("has_movablelimits");</script> 51 </body> 52 </html>