tor-browser

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

columnspan-rowspan-001.html (3233B)


      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="columnspan 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 columnspan="2">
     19            <mspace width="80px" depth="40px" style="background: green"/>
     20          </mtd>
     21          <mtd>
     22            <mspace width="40px" depth="40px" style="background: green"/>
     23          </mtd>
     24          <mtd>
     25            <mspace width="40px" depth="40px" style="background: green"/>
     26          </mtd>
     27          <mtd>
     28            <mspace width="40px" depth="40px" style="background: green"/>
     29          </mtd>
     30        </mtr>
     31        <mtr>
     32          <mtd>
     33            <mspace width="40px" depth="40px" style="background: green"/>
     34          </mtd>
     35          <mtd>
     36            <mspace width="40px" depth="40px" style="background: green"/>
     37          </mtd>
     38          <mtd>
     39            <mspace width="40px" depth="40px" style="background: green"/>
     40          </mtd>
     41          <mtd>
     42            <mspace width="40px" depth="40px" style="background: green"/>
     43          </mtd>
     44          <mtd>
     45            <mspace width="40px" depth="40px" style="background: green"/>
     46          </mtd>
     47        </mtr>
     48        <mtr>
     49          <mtd>
     50            <mspace width="40px" depth="40px" style="background: green"/>
     51          </mtd>
     52          <mtd>
     53            <mspace width="40px" depth="40px" style="background: green"/>
     54          </mtd>
     55          <mtd>
     56            <mspace width="40px" depth="40px" style="background: green"/>
     57          </mtd>
     58          <mtd>
     59            <mspace width="40px" depth="40px" style="background: green"/>
     60          </mtd>
     61          <mtd>
     62            <mspace width="40px" depth="40px" style="background: green"/>
     63          </mtd>
     64        </mtr>
     65        <mtr>
     66          <mtd>
     67            <mspace width="40px" depth="40px" style="background: green"/>
     68          </mtd>
     69          <mtd>
     70            <mspace width="40px" depth="40px" style="background: green"/>
     71          </mtd>
     72          <mtd>
     73            <mspace width="40px" depth="40px" style="background: green"/>
     74          </mtd>
     75          <mtd>
     76            <mspace width="40px" depth="40px" style="background: green"/>
     77          </mtd>
     78          <mtd>
     79            <mspace width="40px" depth="40px" style="background: green"/>
     80          </mtd>
     81        </mtr>
     82        <mtr>
     83          <mtd>
     84            <mspace width="40px" depth="40px" style="background: green"/>
     85          </mtd>
     86          <mtd>
     87            <mspace width="40px" depth="40px" style="background: green"/>
     88          </mtd>
     89          <mtd>
     90            <mspace width="40px" depth="40px" style="background: green"/>
     91          </mtd>
     92          <mtd>
     93            <mspace width="40px" depth="40px" style="background: green"/>
     94          </mtd>
     95          <mtd>
     96            <mspace width="40px" depth="40px" style="background: green"/>
     97          </mtd>
     98        </mtr>
     99      </mtable>
    100    </math>
    101  </body>
    102 </html>