https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9454b8e581454d3bf0dabb368f4cf90c8e3dcc6c authored by Geoffrey Sneddon on 27 August 2018, 16:01:41 UTC
Fix #12578: make SeleniumExecutor/WebDriverExecutor use the right size for reftests
Tip revision: 9454b8e
quirks-ref.html
<title>text decoration doesn't propagate into tables quirks mode ref</title>
<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 }
</style>
<div><table><tr><td>this should not be underlined</table></div>
<div><table class=inline-table><tr><td>this should not be underlined</table></div>
<div><table class=inline><tr><td>this should not be underlined</table></div>
<div><span class=table><span class=tbody><span class=tr><span class=td><u>this should be underlined</u></span></span></span></span></div>
back to top