tor-browser

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

none-002.html (1550B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>none used at other places than mmultiscripts' script</title>
      6    <link rel="help" href="https://w3c.github.io/mathml-core/#subscripts-and-superscripts-msub-msup-msubsup">
      7    <meta name="assert" content="none can be used at other places than mmultiscripts' script, without triggering 'invalid markup'">
      8    <link rel="match" href="none-002-ref.html">
      9    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     10    <style>
     11      math { font: 25px/1 Ahem; }
     12    </style>
     13  </head>
     14  <body>
     15    <p>
     16      <math>
     17        <msub>
     18          <none/>
     19          <mn>2</mn>
     20        </msub>
     21      </math>
     22      <math>
     23        <msub>
     24          <mn>1</mn>
     25          <none/>
     26        </msub>
     27      </math>
     28    </p>
     29    <p>
     30      <math>
     31        <msup>
     32          <none/>
     33          <mn>2</mn>
     34        </msup>
     35      </math>
     36      <math>
     37        <msup>
     38          <mn>1</mn>
     39          <none/>
     40        </msup>
     41      </math>
     42    </p>
     43    <p>
     44      <math>
     45        <msubsup>
     46          <none/>
     47          <mn>2</mn>
     48          <mn>3</mn>
     49        </msubsup>
     50      </math>
     51      <math>
     52        <msubsup>
     53          <mn>1</mn>
     54          <none/>
     55          <mn>3</mn>
     56        </msubsup>
     57      </math>
     58      <math>
     59        <msubsup>
     60          <mn>1</mn>
     61          <mn>2</mn>
     62          <none/>
     63        </msubsup>
     64      </math>
     65    </p>
     66    <p>
     67      <math>
     68        <mmultiscripts>
     69          <none/>
     70          <mn>2</mn>
     71          <mn>3</mn>
     72        </mmultiscripts>
     73      </math>
     74    </p>
     75  </body>
     76 </html>