standards-ref.html (712B)
1 <!doctype html> 2 <title>text decoration doesn't propagate into tables standards mode ref</title> 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 tbody { vertical-align: initial; } 11 </style> 12 <div><table><tr><td><u>this should be underlined</u></table></div> 13 <div><table class=inline-table><tr><td>this should not be underlined</table></div> 14 <div><table class=inline><tr><td><u>this should be underlined</u></table></div> 15 <div><span class=table><span class=tbody><span class=tr><span class=td><u>this should be underlined</u></span></span></span></span></div>