Status: FAIL | Duration: 12ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-tables/zero-rowspan-002.html
<!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>
/css/css-tables/zero-rowspan-002-ref.html
<!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>