tor-browser

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

columnspan-rowspan-003.html (1767B)


      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="combining columnspan/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 columnspan="4" rowspan="4">
     19            <mspace width="160px" depth="160px" style="background: green"/>
     20          </mtd>
     21          <mtd>
     22            <mspace width="40px" depth="40px" style="background: green"/>
     23          </mtd>
     24        </mtr>
     25        <mtr>
     26          <mtd>
     27            <mspace width="40px" depth="40px" style="background: green"/>
     28          </mtd>
     29        </mtr>
     30        <mtr>
     31          <mtd>
     32            <mspace width="40px" depth="40px" style="background: green"/>
     33          </mtd>
     34        </mtr>
     35        <mtr>
     36          <mtd>
     37            <mspace width="40px" depth="40px" style="background: green"/>
     38          </mtd>
     39        </mtr>
     40        <mtr>
     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          <mtd>
     48            <mspace width="40px" depth="40px" style="background: green"/>
     49          </mtd>
     50          <mtd>
     51            <mspace width="40px" depth="40px" style="background: green"/>
     52          </mtd>
     53          <mtd>
     54            <mspace width="40px" depth="40px" style="background: green"/>
     55          </mtd>
     56        </mtr>
     57      </mtable>
     58    </math>
     59  </body>
     60 </html>