Bug 227945

Summary: AX: Voiceover announce wrong number of rows in the table
Product: WebKit Reporter: haeppa <haeppa>
Component: AccessibilityAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: Safari 14   
Hardware: iPhone / iPad   
OS: iOS 14   
Attachments:
Description Flags
isssue screenshot wrong number of rows none

Description haeppa 2021-07-14 00:59:26 PDT
Created attachment 433492 [details]
isssue screenshot wrong number of rows

hi. I'm accessibility tester.
Voiceover announce wrong number of rows in table(html) at ios 14.6
When I tested the lower version, the issue appeared from ios 13.

example 1

<table summary="description">
<caption>name</caption>
...
</table>

when accessing the table, voiceover announce like this.
"name, description, -9223372036854775808rows, table start, n rows, n columns"
It is wrong number of rows "-9223372036854775808"


example 2

<table summary="description">
<caption><h2>name</h2></caption>
...
</table>

when accessing the table, voiceover announce like this.
"name, description, {first cell text}, row header, column header, 1 row, 1 column, table start, n rows, n columns"
There is no problem.


In conclusion, there is no problem(wrong number of rows) in the example 1.
Comment 1 Radar WebKit Bug Importer 2021-07-14 00:59:37 PDT
<rdar://problem/80563225>
Comment 2 haeppa 2021-07-14 02:36:59 PDT
> In conclusion, there is no problem(wrong number of rows) in the example 1.

It was my mistake. haha

my intention is the 'example 1' need to fix.