tor-browser

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

quirks.html (701B)


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