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