tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

direction-007.html (1808B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8"/>
      5    <title>mo and embellished mrow/munderover (lspace=1em rspace=2em)</title>
      6    <link rel="help" href="https://w3c.github.io/mathml-core/#attributes-common-to-html-and-mathml-elements">
      7    <link rel="help" href="https://w3c.github.io/mathml-core/#css-styling">
      8    <link rel="help" href="https://w3c.github.io/mathml-core/#embellished-operators">
      9    <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo">
     10    <link rel="help" href="https://w3c.github.io/mathml-core/#horizontally-group-sub-expressions-mrow">
     11    <link rel="help" href="https://w3c.github.io/mathml-core/#underscripts-and-overscripts-munder-mover-munderover">
     12    <meta name="assert" content="Verify that the lspace/rspace on an mo or an embellished mrow/munderover element are switched in RTL mode">
     13    <link rel="match" href="direction-007-ref.html">
     14    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     15    <style>
     16      math, math * {
     17          font: 25px/1 Ahem;
     18      }
     19    </style>
     20  </head>
     21  <body>
     22 
     23    <p>
     24      <math dir="rtl">
     25        <mtext>p</mtext><mo lspace="1em" rspace="2em">X</mo><mtext>p</mtext>
     26      </math>
     27    </p>
     28 
     29    <p>
     30      <math dir="rtl">
     31        <mtext>p</mtext>
     32        <mrow><mo lspace="1em" rspace="2em">X</mo></mrow>
     33        <mtext>p</mtext>
     34      </math>
     35    </p>
     36 
     37    <p>
     38      <math dir="rtl">
     39        <mtext>p</mtext>
     40        <munderover>
     41          <mo lspace="1em" rspace="2em">X</mo>
     42          <mtext>É</mtext>
     43          <mtext>É</mtext>
     44        </munderover>
     45        <mtext>p</mtext>
     46      </math>
     47    </p>
     48 
     49   <script src="/mathml/support/feature-detection.js"></script>
     50   <script>MathMLFeatureDetection.ensure_for_match_reftest("has_dir");</script>
     51 
     52  </body>
     53 </html>