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