tor-browser

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

mtable-width.html (794B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>Check that mtable supports the width attribute</title>
      5    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
      6    <link rel="match" href="mtable-width-ref.html"/>
      7  </head>
      8 
      9  <body>
     10 
     11 <div>
     12    <math>
     13      <mtext>|</mtext>
     14      <mtable width="8em">
     15        <mtr>
     16          <mtd></mtd>
     17        </mtr>
     18      </mtable>
     19      <mtext>|</mtext>
     20    </math>
     21 </div>
     22 <div>
     23    <math>
     24      <mtext>|</mtext>
     25      <mtable width="30px">
     26        <mtr>
     27          <mtd></mtd>
     28        </mtr>
     29      </mtable>
     30      <mtext>|</mtext>
     31    </math>
     32 </div>
     33 <div>
     34    <math>
     35      <mtext>|</mtext>
     36      <mtable width="auto">
     37        <mtr>
     38          <mtd></mtd>
     39        </mtr>
     40      </mtable>
     41      <mtext>|</mtext>
     42    </math>
     43 </div>
     44 
     45  </body>
     46 </html>