mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Update web-platform-tests to revision 34f9b93c2749043ba68485dea92d1fb554075e60
This commit is contained in:
parent
fd64f11efe
commit
ace02666c2
75 changed files with 1496 additions and 120 deletions
|
@ -0,0 +1,13 @@
|
|||
<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>
|
|
@ -0,0 +1,14 @@
|
|||
<title>text decoration doesn't propagate into tables quirk</title>
|
||||
<link rel=match href=quirks-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 }
|
||||
</style>
|
||||
<div><u><table><tr><td>this should not 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 not 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>
|
|
@ -0,0 +1,14 @@
|
|||
<!doctype html>
|
||||
<title>text decoration doesn't propagate into tables standards 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><u>this should be underlined</u></table></div>
|
||||
<div><table class=inline-table><tr><td>this should not be underlined</table></div>
|
||||
<div><table class=inline><tr><td><u>this should be underlined</u></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>
|
|
@ -0,0 +1,15 @@
|
|||
<!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 }
|
||||
</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>
|
Loading…
Add table
Add a link
Reference in a new issue