tor-browser

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

dynamic-dir-1-ref.html (1281B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>Test dynamically changing dir attribute</title>
      6 </head>
      7 <body>
      8    <p>
      9      math:
     10      <math dir="rtl">
     11        <mi>a</mi>
     12        <mi>b</mi>
     13        <mi>c</mi>
     14      </math>
     15      <math dir="rtl">
     16        <mi>a</mi>
     17        <mi>b</mi>
     18        <mi>c</mi>
     19      </math>
     20      <math>
     21        <mi>a</mi>
     22        <mi>b</mi>
     23        <mi>c</mi>
     24      </math>
     25    </p>
     26    <p>
     27      mstyle:
     28      <math>
     29        <mstyle dir="rtl">
     30          <mi>a</mi>
     31          <mi>b</mi>
     32          <mi>c</mi>
     33        </mstyle>
     34      </math>
     35      <math>
     36        <mstyle dir="rtl">
     37          <mi>a</mi>
     38          <mi>b</mi>
     39          <mi>c</mi>
     40        </mstyle>
     41      </math>
     42      <math>
     43        <mstyle>
     44          <mi>a</mi>
     45          <mi>b</mi>
     46          <mi>c</mi>
     47        </mstyle>
     48      </math>
     49    </p>
     50    <p>
     51      mrow:
     52      <math>
     53        <mrow dir="rtl">
     54          <mi>a</mi>
     55          <mi>b</mi>
     56          <mi>c</mi>
     57        </mrow>
     58      </math>
     59      <math>
     60        <mrow dir="rtl">
     61          <mi>a</mi>
     62          <mi>b</mi>
     63          <mi>c</mi>
     64        </mrow>
     65      </math>
     66      <math>
     67        <mrow>
     68          <mi>a</mi>
     69          <mi>b</mi>
     70          <mi>c</mi>
     71        </mrow>
     72      </math>
     73    </p>
     74 </body>
     75 </html>