Bug 1470678 [wpt PR 11640] - Add a test for text-decoration in tables quirk, a=testonly

Automatic update from web-platform-testsAdd a test for text-decoration in tables quirk

--

wpt-commits: f4b8c1ed158c79fdb30ed70b2824da295f524755
wpt-pr: 11640
This commit is contained in:
Simon Pieters 2018-08-24 13:01:25 +00:00 committed by moz-wptsync-bot
parent f76fcd9726
commit 35d6b9cf36
5 changed files with 106 additions and 0 deletions

View File

@ -185759,6 +185759,30 @@
{}
]
],
"quirks/text-decoration-doesnt-propagate-into-tables/quirks.html": [
[
"/quirks/text-decoration-doesnt-propagate-into-tables/quirks.html",
[
[
"/quirks/text-decoration-doesnt-propagate-into-tables/quirks-ref.html",
"=="
]
],
{}
]
],
"quirks/text-decoration-doesnt-propagate-into-tables/standards.html": [
[
"/quirks/text-decoration-doesnt-propagate-into-tables/standards.html",
[
[
"/quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html",
"=="
]
],
{}
]
],
"service-workers/service-worker/svg-target-reftest.https.html": [
[
"/service-workers/service-worker/svg-target-reftest.https.html",
@ -292572,6 +292596,16 @@
{}
]
],
"quirks/text-decoration-doesnt-propagate-into-tables/quirks-ref.html": [
[
{}
]
],
"quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html": [
[
{}
]
],
"quirks/unitless-length/support/common.js": [
[
{}
@ -620015,6 +620049,22 @@
"eeb726627b78fdcbf81d3c29b9205f771bd0aca8",
"testharness"
],
"quirks/text-decoration-doesnt-propagate-into-tables/quirks-ref.html": [
"a72475f40cec7a84702fdb03aad81198e0e7cdca",
"support"
],
"quirks/text-decoration-doesnt-propagate-into-tables/quirks.html": [
"669c8868211e325a2adab64164415725befde18d",
"reftest"
],
"quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html": [
"4e2a3f45547e4f887d6d377e33f602ba311b54dd",
"support"
],
"quirks/text-decoration-doesnt-propagate-into-tables/standards.html": [
"6b1c8a72751a6233eb0a07a8bb7df5e116fac724",
"reftest"
],
"quirks/unitless-length/excluded-properties.html": [
"a1de182770aafaab2ee4a8a335b34870388abacc",
"testharness"

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>