table-quirk-2.html (1227B)
1 <title>text-decoration quirk on tables (Bug 572713)</title> 2 3 <h1>text-decoration on a block</h1> 4 5 <div style="text-decoration: underline"> 6 7 text in the block 8 9 <div>text in a block in the block</div> 10 11 <table><tbody><tr><td>an HTML table</td></tr></tbody></table> 12 13 <table style="display:block"><tbody style="display:block"><tr style="display:block"><td style="display:block">an HTML table that's not table-display</td></tr></tbody></table> 14 15 <div style="display: table"><div style="display: table-row-group"><div style="display: table-row"><div style="display: table-cell">a div with table display types</div></div></div></div> 16 17 18 </div> 19 20 <h1>text-decoration on an inline</h1> 21 22 <div style="text-decoration: underline; display: inline"> 23 24 text in the block 25 26 <div>text in a block in the block</div> 27 28 <table><tbody><tr><td>an HTML table</td></tr></tbody></table> 29 30 <table style="display:block"><tbody style="display:block"><tr style="display:block"><td style="display:block">an HTML table that's not table-display</td></tr></tbody></table> 31 32 <div style="display: table"><div style="display: table-row-group"><div style="display: table-row"><div style="display: table-cell">a div with table display types</div></div></div></div> 33 34 35 </div>