diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-tables')
4 files changed, 43 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-001-ref.html b/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-001-ref.html new file mode 100644 index 00000000000..4f1dbdf96d3 --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-001-ref.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<title>CSS Test: Reference Test</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"> +<table> + <tr><td rowspan="4">Foo</td></tr> + <tr><td>Foo</td></tr> + <tr><td>Foo</td></tr> + <tr><td>Foo</td></tr> +</table> + diff --git a/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-001.html b/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-001.html new file mode 100644 index 00000000000..bef5b947fcc --- /dev/null +++ b/tests/wpt/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> + diff --git a/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-002-ref.html b/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-002-ref.html new file mode 100644 index 00000000000..3ccac78bd82 --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-002-ref.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<title>CSS Test: Reference Test</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"> +<table> + <tr><td rowspan="3">1</td><td>2</td><td>3</td></tr> + <tr><td>1</td><td rowspan="2">2</td><td>3</td></tr> + <tr><td>1</td><td>2</td><td>3</td></tr> +</table> diff --git a/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-002.html b/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-002.html new file mode 100644 index 00000000000..7a79fc37b0a --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-tables/zero-rowspan-002.html @@ -0,0 +1,11 @@ +<!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-002-ref.html"> +<table> + <tr><td rowspan="0">1</td><td>2</td><td>3</td></tr> + <tr><td>1</td><td rowspan="0">2</td><td>3</td></tr> + <tr><td>1</td><td>2</td><td>3</td></tr> +</table> + |