tor-browser

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

direction-010-ref.html (836B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8"/>
      5    <title>dir="rtl" VS direction: rtl on math/mrow/mstyle</title>
      6    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      7    <style>
      8      math {
      9          font: 25px/1 Ahem;
     10      }
     11    </style>
     12  </head>
     13  <body>
     14 
     15    <p>
     16      <math style="direction: rtl">
     17        <mtext>X</mtext>
     18        <mtext>p</mtext>
     19        <mtext>É</mtext>
     20      </math>
     21    </p>
     22 
     23    <p>
     24      <math>
     25        <mrow style="direction: rtl">
     26          <mtext>X</mtext>
     27          <mtext>p</mtext>
     28          <mtext>É</mtext>
     29        </mrow>
     30      </math>
     31    </p>
     32 
     33    <p>
     34      <math>
     35        <mstyle mathcolor="blue" style="direction: rtl">
     36          <mtext>X</mtext>
     37          <mtext>p</mtext>
     38          <mtext>É</mtext>
     39        </mstyle>
     40      </math>
     41    </p>
     42 
     43  </body>
     44 </html>