summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html')
-rw-r--r--testing/web-platform/tests/quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html b/testing/web-platform/tests/quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html
new file mode 100644
index 0000000000..188e00ba94
--- /dev/null
+++ b/testing/web-platform/tests/quirks/text-decoration-doesnt-propagate-into-tables/standards-ref.html
@@ -0,0 +1,15 @@
+<!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 }
+tbody { vertical-align: initial; }
+</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>