diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/zero-rowspan-001.html')
-rw-r--r-- | testing/web-platform/tests/css/css-tables/zero-rowspan-001.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/zero-rowspan-001.html b/testing/web-platform/tests/css/css-tables/zero-rowspan-001.html new file mode 100644 index 0000000000..bef5b947fc --- /dev/null +++ b/testing/web-platform/tests/css/css-tables/zero-rowspan-001.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<title>CSS Test: Overflow clipping in cells that span columns</title> +<link rel="author" title="Robert Hogan" href="mailto:robhogan@gmail.com"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/tables.html#attributes-common-to-td-and-th-elements"> +<link rel="match" href="zero-rowspan-001-ref.html"> +<table> + <tr><td rowspan="0">Foo</td></tr> + <tr><td>Foo</td></tr> + <tr><td>Foo</td></tr> + <tr><td>Foo</td></tr> +</table> + |