CARVIEW |
Select Language
HTTP/2 200
server: GitHub.com
content-type: text/html; charset=utf-8
last-modified: Mon, 22 Sep 2025 14:00:37 GMT
access-control-allow-origin: *
etag: W/"68d15685-ae8"
expires: Mon, 13 Oct 2025 01:01:16 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: D36A:3645FD:18C382:1E5BC9:68EC4D03
accept-ranges: bytes
age: 0
date: Mon, 13 Oct 2025 00:51:17 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210035-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760316677.784121,VS0,VE297
vary: Accept-Encoding
x-fastly-request-id: acb3acf45d8e405f382194e2cee93c6a8bf36412
content-length: 991
ARIA in HTML - Test Cases
ARIA in HTML - test cases for
ARIA in HTML - test cases for aria-rowspan
last updated 18 August 2021
rowspan
is allowed on td
and th
elements
Tests:
Test 1
Edit: removed test.Test 2
Authors SHOULD NOT use the aria-rowspan
. attribute on any element which also has a rowspan
attribute.
The first th
and td
each have an aria-rowspan="1"
and rowspan="1"
attribute
header 1 | header 2 |
---|---|
Cell 1 | Cell 2 |
Expected result:
warning for unnecessary use of aria-rowspan
when element has rowspan
.
Test 3
Authors MUST NOT use aria-rowspan
on any element which also has a rowspan
attribute, and the values of each attribute do not match.
The first th
and td
each have an aria-rowspan="1"
and rowspan="2"
attribute
header 1 | header 2 |
---|---|
Cell 1 | Cell 2 |
Expected result:
error for use of aria-rowspan
with value different than rowspan