tor-browser

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

columnspan-rowspan-002.html (2129B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>columnspan/rowspan</title>
      6    <link rel="help" href="https://w3c.github.io/mathml-core/#table-or-matrix-mtable">
      7    <meta name="assert" content="rowspan is supported on mtd">
      8    <link rel="match" href="columnspan-rowspan-ref.html">
      9    <style>
     10      mtd { padding: 0; }
     11    </style>
     12  </head>
     13  <body>
     14    <p>This test passes if you see a green square.</p>
     15    <math>
     16      <mtable>
     17        <mtr>
     18          <mtd rowspan="3">
     19            <mspace width="50px" depth="150px" style="background: green"/>
     20          </mtd>
     21          <mtd>
     22            <mspace width="50px" depth="50px" style="background: green"/>
     23          </mtd>
     24          <mtd>
     25            <mspace width="50px" depth="50px" style="background: green"/>
     26          </mtd>
     27          <mtd>
     28            <mspace width="50px" depth="50px" style="background: green"/>
     29          </mtd>
     30        </mtr>
     31        <mtr>
     32          <mtd>
     33            <mspace width="50px" depth="50px" style="background: green"/>
     34          </mtd>
     35          <mtd>
     36            <mspace width="50px" depth="50px" style="background: green"/>
     37          </mtd>
     38          <mtd>
     39            <mspace width="50px" depth="50px" style="background: green"/>
     40          </mtd>
     41        </mtr>
     42        <mtr>
     43          <mtd>
     44            <mspace width="50px" depth="50px" style="background: green"/>
     45          </mtd>
     46          <mtd>
     47            <mspace width="50px" depth="50px" style="background: green"/>
     48          </mtd>
     49          <mtd>
     50            <mspace width="50px" depth="50px" style="background: green"/>
     51          </mtd>
     52        </mtr>
     53        <mtr>
     54          <mtd>
     55            <mspace width="50px" depth="50px" style="background: green"/>
     56          </mtd>
     57          <mtd>
     58            <mspace width="50px" depth="50px" style="background: green"/>
     59          </mtd>
     60          <mtd>
     61            <mspace width="50px" depth="50px" style="background: green"/>
     62          </mtd>
     63          <mtd>
     64            <mspace width="50px" depth="50px" style="background: green"/>
     65          </mtd>
     66        </mtr>
     67      </mtable>
     68    </math>
     69  </body>
     70 </html>