mo-form.html (1142B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title><mo> form attribute</title> 6 <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo"> 7 <meta name="assert" content="Verifies behavior of form attribute."> 8 <link rel="match" href="mo-form-ref.html"> 9 </head> 10 <body> 11 12 <!-- This checks the effect of @form on a prefix operator. --> 13 _<math><mo form="infix">∇</mo></math>_ 14 _<math><mo form="prefix">∇</mo></math>_ 15 _<math><mo form="postfix">∇</mo></math>_ 16 17 <!-- This checks the effect of @form on an infix operator. --> 18 _<math><mo form="infix">⋉</mo></math>_ 19 _<math><mo form="prefix">⋉</mo></math>_ 20 _<math><mo form="postfix">⋉</mo></math>_ 21 22 <!-- This checks the effect of @form on a postfix operator. --> 23 _<math><mo form="infix">”</mo></math>_ 24 _<math><mo form="prefix">”</mo></math>_ 25 _<math><mo form="postfix">”</mo></math>_ 26 27 <script src="/mathml/support/feature-detection.js"></script> 28 <script>MathMLFeatureDetection.ensure_for_match_reftest("has_operator_spacing");</script> 29 </body> 30 </html>