tor-browser

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

standards.html (756B)


      1 <!doctype html>
      2 <title>text decoration doesn't propagate into tables standards mode</title>
      3 <link rel=match href=standards-ref.html>
      4 <style>
      5 .inline-table { display: inline-table }
      6 .inline, .inline * { display: inline }
      7 .table { display: table }
      8 .tbody { display: table-row-group }
      9 .tr { display: table-row }
     10 .td { display: table-cell }
     11 tbody { vertical-align: initial; }
     12 </style>
     13 <div><u><table><tr><td>this should be underlined</table></u></div>
     14 <div><u><table class=inline-table><tr><td>this should not be underlined</table></u></div>
     15 <div><u><table class=inline><tr><td>this should be underlined</table></u></div>
     16 <div><u><span class=table><span class=tbody><span class=tr><span class=td>this should be underlined</span></span></span></span></u></div>