diff options
author | Josh Matthews <josh@joshmatthews.net> | 2018-01-04 13:44:24 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2018-01-09 12:52:27 -0500 |
commit | 2b6f573eb5d1920cec5ad8a1ee98474b715e2e08 (patch) | |
tree | 3d900a9792c86b5a27865914f3e100b28ad9334a /tests/wpt/web-platform-tests/css/css-tables | |
parent | aa199307c86051e13b17a5feb77722ddcdeed5ce (diff) | |
download | servo-2b6f573eb5d1920cec5ad8a1ee98474b715e2e08.tar.gz servo-2b6f573eb5d1920cec5ad8a1ee98474b715e2e08.zip |
Update web-platform-tests to revision be5419e845d39089ba6dc338c1bd0fa279108317
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> + |