mo-boolean-attributes-case-insensitive.html (1325B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"/> 3 <title>Test case insensitivity of mo boolean attributes</title> 4 <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo"> 5 <link rel="help" href="https://w3c.github.io/mathml-core/#dom-and-javascript"> 6 <meta name="assert" content="Verifies case insensitivity of mo boolean attributes."> 7 <link rel="match" href="mo-boolean-attributes-case-insensitive-ref.html"> 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 9 <style> 10 math { 11 font: 25px/1 Ahem; 12 } 13 @font-face { 14 font-family: operators; 15 src: url("/fonts/math/operators.woff"); 16 } 17 mo { 18 font-family: operators; 19 } 20 </style> 21 <p> 22 <math> 23 <mrow> 24 <mo symmetric="false" stretchy="FaLsE">⥯</mo> 25 <mspace height="2em"></mspace> 26 </mrow> 27 </math> 28 </p> 29 <p> 30 <math> 31 <mrow> 32 <mo symmetric="TrUe" stretchy="true">⥯</mo> 33 <mspace height="1.5em"></mspace> 34 </mrow> 35 </math> 36 </p> 37 <p> 38 <math displaystyle="true"> 39 <mo largeop="FALSe">∑</mo> 40 </math> 41 </p> 42 <p> 43 <math> 44 <munder> 45 <mo movablelimits="fALse">∑</mo> 46 <mtext>X</mtext> 47 </munder> 48 </math> 49 </p> 50 <script src="/mathml/support/feature-detection.js"></script> 51 <script>MathMLFeatureDetection.ensure_for_match_reftest("has_munderover");</script>